javafx.geometry
Class Dimension2D
- 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 and Description Dimension2D(double width, double height)Constructs aDimension2Dwith the specified width and height.
-
Method Summary
All MethodsInstance MethodsConcrete Methods Modifier and Type Method and Description booleanequals(Object obj)Indicates whether some other object is "equal to" this one.doublegetHeight()The height of the dimension.doublegetWidth()The width of the dimension.inthashCode()Returns a hash code value for the Dimension2D object.StringtoString()Returns a string representation of thisDimension2D.
-
Constructor Detail
-
Dimension2D
public Dimension2D(double width, double height)Constructs aDimension2Dwith the specified width and height.Parameters:
width- the width
-
-
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.
-
hashCode
public int hashCode()
Returns a hash code value for the Dimension2D 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.
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.