java.lang.Object
java.awt.geom.Point2D
java.awt.geom.Point2D.Double
- All Implemented Interfaces:
 Serializable,Cloneable
- Enclosing class:
 - Point2D
 
The 
Double class defines a point specified in
 double precision.- Since:
 - 1.2
 - See Also:
 - Serialized Form
 
- 
Nested Class Summary
Nested classes/interfaces declared in class java.awt.geom.Point2D
Point2D.Double, Point2D.Float - 
Field Summary
Fields - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptiondoublegetX()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.toString()Returns aStringthat represents the value of thisPoint2D.Methods declared in class java.awt.geom.Point2D
clone, distance, distance, distance, distanceSq, distanceSq, distanceSq, equals, hashCode, setLocation 
- 
Field Details
- 
x
public double xThe X coordinate of thisPoint2D.- Since:
 - 1.2
 
 - 
y
public double yThe Y coordinate of thisPoint2D.- Since:
 - 1.2
 
 
 - 
 - 
Constructor Details
- 
Double
public Double()Constructs and initializes aPoint2Dwith coordinates (0, 0).- Since:
 - 1.2
 
 - 
Double
public Double(double x, double y)Constructs and initializes aPoint2Dwith the specified coordinates.- Parameters:
 x- the X coordinate of the newly constructedPoint2Dy- the Y coordinate of the newly constructedPoint2D- Since:
 - 1.2
 
 
 - 
 - 
Method Details
- 
getX
public double getX()Returns the X coordinate of thisPoint2Dindoubleprecision. - 
getY
public double getY()Returns the Y coordinate of thisPoint2Dindoubleprecision. - 
setLocation
public void setLocation(double x, double y)Sets the location of thisPoint2Dto the specifieddoublecoordinates.- Specified by:
 setLocationin classPoint2D- Parameters:
 x- the new X coordinate of thisPoint2Dy- the new Y coordinate of thisPoint2D- Since:
 - 1.2
 
 - 
toString
Returns aStringthat represents the value of thisPoint2D. 
 -