public class SdePoint extends java.lang.Object implements Immutable
Points in ESRI ArcSDE are stored in scaled relative coordinates as integers to improve precision over floating-point representations.
ArcSDE v9.2 and later support 8-byte integers, so we use Java longs.
Copyright 2007 Partner Software, Inc.
| Constructor and Description |
|---|
SdePoint(long x,
long y) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object nother) |
long |
getX() |
long |
getY() |
java.lang.String |
toString() |
XyPoint |
toXyPoint()
Convert the result directly to an XyPoint representation.
|
XyPoint |
toXyPoint(double falseOriginX,
double falseOriginY,
double scale)
Convert the result to an XyPoint representation using the given
spatial-reference parameters.
|
public XyPoint toXyPoint()
public XyPoint toXyPoint(double falseOriginX, double falseOriginY, double scale)
public boolean equals(java.lang.Object nother)
equals in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Objectpublic long getX()
public long getY()