|  | Modifier and Type | Method and Description | 
|  | clone   | 
java.lang.Object clone()
 Creates a new object of the same class as this object. 
public java.lang.Object clone() 
Description copied from class: java.awt.geom.Dimension2D Creates a new object of the same class as this object. 
Overrides:clonein classjava.lang.ObjectReturns:a clone of this instance.Throws:java.lang.OutOfMemoryError- if there is not enough memory.Since:1.2See Also:Cloneable | 
|  | equals   | 
boolean equals(java.lang.Object obj)
 Checks whether two dimension objects have equal values. 
public boolean equals(java.lang.Object obj) 
Checks whether two dimension objects have equal values. 
Overrides:equalsin classjava.lang.ObjectParameters:obj- the reference object with which to compare.Returns:trueif this object is the same as the obj
          argument;falseotherwise.See Also:Object.hashCode(),HashMap | 
|  | getHeight   | 
double getHeight()
 Returns the height of this Dimensionin double
 precision. 
public double getHeight() 
Returns the height of this Dimensionin double
 precision. 
Specified by:getHeightin classjava.awt.geom.Dimension2DReturns:the height of this Dimension.Since:1.2 | 
|  | getSize   | 
Gets the size of this Dimensionobject. 
Gets the size of this Dimensionobject.
 This method is included for completeness, to parallel thegetSizemethod defined byComponent. Returns:the size of this dimension, a new instance of
           Dimensionwith the same width and heightSince:1.1See Also:setSize(double, double),Component.getSize()
 | 
|  | getWidth   | 
double getWidth()
 Returns the width of this Dimensionin double
 precision. 
public double getWidth() 
Returns the width of this Dimensionin double
 precision. 
Specified by:getWidthin classjava.awt.geom.Dimension2DReturns:the width of this Dimension.Since:1.2 | 
|  | hashCode   | 
int hashCode()
 Returns the hash code for this Dimension. 
public int hashCode() 
Returns the hash code for this Dimension. 
Overrides:hashCodein classjava.lang.ObjectReturns:a hash code for this DimensionSee Also:Object.equals(java.lang.Object),System.identityHashCode(java.lang.Object) | 
|  | setSize   | 
void setSize(Dimension d)
 Sets the size of this Dimensionobject to the specified size. 
Sets the size of this Dimensionobject to the specified size.
 This method is included for completeness, to parallel thesetSizemethod defined byComponent. Parameters:d- the new size for thisDimensionobjectSince:1.1See Also:getSize(),Component.setSize(int, int)
 | 
|  | setSize   | 
void setSize(java.awt.geom.Dimension2D d)
 Sets the size of this Dimension2Dobject to
 match the specified size. 
public void setSize(java.awt.geom.Dimension2D d) 
Description copied from class: java.awt.geom.Dimension2D Sets the size of this Dimension2Dobject to
 match the specified size.
 This method is included for completeness, to parallel thegetSizemethod ofComponent. Parameters:d- the new size for theDimension2DobjectSince:1.2
 | 
|  | setSize   | 
void setSize(double width,
       double height)
 Sets the size of this Dimensionobject to
 the specified width and height in double precision. 
public void setSize(double width,
           double height) 
Sets the size of this Dimensionobject to
 the specified width and height in double precision.
 Note that ifwidthorheightare larger thanInteger.MAX_VALUE, they will
 be reset toInteger.MAX_VALUE. 
Specified by:setSizein classjava.awt.geom.Dimension2DParameters:width- the new width for theDimensionobjectheight- the new height for theDimensionobjectSince:1.2 | 
|  | setSize   | 
void setSize(int width,
       int height)
 Sets the size of this Dimensionobject
 to the specified width and height. 
public void setSize(int width,
           int height) 
Sets the size of this Dimensionobject
 to the specified width and height.
 This method is included for completeness, to parallel thesetSizemethod defined byComponent. Parameters:width- the new width for thisDimensionobjectheight- the new height for thisDimensionobjectSince:1.1See Also:getSize(),Component.setSize(int, int)
 | 
|  | toString   | 
java.lang.String toString()
 Returns a string representation of the values of this
 Dimensionobject'sheightandwidthfields. 
public java.lang.String toString() 
Returns a string representation of the values of this
 Dimensionobject'sheightandwidthfields. This method is intended to be used only
 for debugging purposes, and the content and format of the returned
 string may vary between implementations. The returned string may be
 empty but may not benull. 
Overrides:toStringin classjava.lang.ObjectReturns:a string representation of this Dimensionobject |