Class Point
- java.lang.Object
-
- com.avaya.clientservices.collaboration.drawing.Point
-
public class Point extends java.lang.ObjectRepresents two x and y coordinates
-
-
Constructor Summary
Constructors Constructor Description Point(int X, int Y)Public constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)android.graphics.PointFgetPointF()intgetX()intgetY()inthashCode()java.lang.StringtoString()
-
-
-
Method Detail
-
getX
public int getX()
- Returns:
- X coordinate of the point
-
getY
public int getY()
- Returns:
- Y coordinate of the point
-
getPointF
public android.graphics.PointF getPointF()
- Returns:
- android platform point object PointF which holds x and y coordinates
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-