|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.esri.aims.mtier.model.map.projection.FeatureCoordSys
Represents the projection coordinate system that layers in a service or a specific service are projected to.
Constructor Summary | |
FeatureCoordSys()
Constructs an instance of the FeatureCoordSys object. |
Method Summary | |
long |
getDatumTransformID()
Returns the the Datum transformation ID associated with this FeatureCoordSys
object. |
String |
getDatumTransformString()
Returns the Datum transformation definition string associated with this FeatureCoordSys
object. |
long |
getID()
Returns the projected or geographic coordinate system ID of this FeatureCoordSys object. |
String |
getString()
Returns the projected or geographic coordinate system definition string associated with this FeatureCoordSys object. |
void |
setDatumTransformID(long value)
Sets the Datum transformation ID for this FeatureCoordSys object. |
void |
setDatumTransformString(String value)
Sets the Datum transformation definition string for this FeatureCoordSys
object. |
void |
setID(long value)
Sets the projected or geographic coordinate system ID for this FeatureCoordSys object. |
void |
setString(String value)
Sets the projected or geographic coordinate system definition string for this FeatureCoordSys object. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public FeatureCoordSys()
FeatureCoordSys
object.
Example: FeatureCoordSys featureCoordSys = new FeatureCoordSys();
Method Detail |
public void setID(long value)
FeatureCoordSys
object.
Example:
featureCoordSys.setID(4326);
value
- the projected or geographic coordinate system identifier.getID()
public long getID()
FeatureCoordSys
object.
Example:
long id = featureCoordSys.getID();
setID(long)
public void setString(String value)
FeatureCoordSys
object.
Refer to the ArcXML Programmer's Reference Help for details on the datum transform
string value to set.
value
- the projected or geographic coordinate system definition string.getString()
public String getString()
FeatureCoordSys
object.
Example:
String fcString = featureCoordSys.getString();
setString(java.lang.String)
public void setDatumTransformID(long value)
FeatureCoordSys
object.
Example:
featureCoordSys.setDatumTransformID(8026);
value
- the Datum transformation ID.getDatumTransformID()
public long getDatumTransformID()
FeatureCoordSys
object.
Example:
long id = featureCoordSys.getDatumTransformID();
setDatumTransformID(long)
public void setDatumTransformString(String value)
FeatureCoordSys
object. Refer to the ArcXML Programmer's Reference Help for details on the
datum transform string value to set.
value
- the Datum transformation definition string.getDatumTransformString()
public String getDatumTransformString()
FeatureCoordSys
object.
Example: String datumTransformString = featureCoordSys.getDatumTransformString();
setDatumTransformString(java.lang.String)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |