java.lang.Object
java.awt.geom.Point2D
java.awt.geom.Point2D.Double
- All Implemented Interfaces:
- Serializable,- Cloneable
- Enclosing class:
- Point2D
public static class Point2D.Double extends Point2D implements Serializable
The 
Double class defines a point specified in
 double precision.- Since:
- 1.2
- See Also:
- Serialized Form
- 
Nested Class Summary
- 
Field Summary
- 
Constructor Summary
- 
Method SummaryModifier and Type Method Description doublegetX()Returns the X coordinate of thisPoint2Dindoubleprecision.doublegetY()Returns the Y coordinate of thisPoint2Dindoubleprecision.voidsetLocation(double x, double y)Sets the location of thisPoint2Dto the specifieddoublecoordinates.StringtoString()Returns aStringthat represents the value of thisPoint2D.Methods declared in class java.awt.geom.Point2Dclone, distance, distance, distance, distanceSq, distanceSq, distanceSq, equals, hashCode, setLocation
- 
Field Details
- 
Constructor Details- 
Doublepublic Double()Constructs and initializes aPoint2Dwith coordinates (0, 0).- Since:
- 1.2
 
- 
Doublepublic Double(double x, double y)Constructs and initializes aPoint2Dwith the specified coordinates.- Parameters:
- x- the X coordinate of the newly constructed- Point2D
- y- the Y coordinate of the newly constructed- Point2D
- Since:
- 1.2
 
 
- 
- 
Method Details- 
getXpublic double getX()Returns the X coordinate of thisPoint2Dindoubleprecision.
- 
getYpublic double getY()Returns the Y coordinate of thisPoint2Dindoubleprecision.
- 
setLocationpublic void setLocation(double x, double y)Sets the location of thisPoint2Dto the specifieddoublecoordinates.- Specified by:
- setLocationin class- Point2D
- Parameters:
- x- the new X coordinate of this- Point2D
- y- the new Y coordinate of this- Point2D
- Since:
- 1.2
 
- 
toStringReturns aStringthat represents the value of thisPoint2D.
 
-