- java.lang.Object
-
- javafx.geometry.Dimension2D
-
public class Dimension2D extends Object
A 2D dimension object that contains a width and a height.- Since:
- JavaFX 2.0
-
-
Constructor Summary
Constructors Constructor Description Dimension2D(double width, double height)
Constructs aDimension2D
with the specified width and height.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Indicates whether some other object is "equal to" this one.double
getHeight()
The height of the dimension.double
getWidth()
The width of the dimension.int
hashCode()
Returns a hash code value for the Dimension2D object.String
toString()
Returns a string representation of thisDimension2D
.
-
-
-
Method Detail
-
getWidth
public final double getWidth()
The width of the dimension.- Returns:
- the width of the dimension
-
getHeight
public final double getHeight()
The height of the dimension.- Returns:
- the height of the dimension
-
equals
public boolean equals(Object obj)
Indicates whether some other object is "equal to" this one.- Overrides:
equals
in classObject
- Parameters:
obj
- the reference object with which to compare- Returns:
- true if this Dimension2D instance is the same as the obj argument; false otherwise
- See Also:
Object.hashCode()
,HashMap
-
hashCode
public int hashCode()
Returns a hash code value for the Dimension2D object.- Overrides:
hashCode
in classObject
- Returns:
- a hash code value for the Dimension2D object.
- See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
toString
public String toString()
Returns a string representation of thisDimension2D
. This method is intended to be used only for informational purposes. The content and format of the returned string might vary between implementations. The returned string might be empty but cannot benull
.
-
-