|
||||||||||
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.FilterCoordSys
Represents the current coordinate system for layers in a service or a specific service.
Constructor Summary | |
FilterCoordSys()
Constructs an instance of the FilterCoordSys object. |
Method Summary | |
long |
getDatumTransformID()
Returns the Datum transformation ID FilterCoordSys object. |
String |
getDatumTransformString()
Returns the Datum transformation definition string associated with this FilterCoordSys object. |
long |
getID()
Returns the projected or geographic coordinate system ID associated with this FilterCoordSys object. |
String |
getString()
Returns the the projected or geographic coordinate system definition string for this FilterCoordSys object. |
void |
setDatumTransformID(long value)
Sets the Datum transformation ID for this FilterCoordSys object. |
void |
setDatumTransformString(String value)
Sets the Datum transformation definition string for this FilterCoordSys object. |
void |
setID(long value)
Sets the projected or geographic coordinate system ID for this FilterCoordSys object. |
void |
setString(String value)
Sets the projected or geographic coordinate system definition string for this FilterCoordSys object. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public FilterCoordSys()
FilterCoordSys
object.
Example: FilterCoordSys filterCoordSys = new FilterCoordSys();
Method Detail |
public void setID(long value)
FilterCoordSys
object.
Example:
filterCoordSys.setID(4326);
value
- the projected or geographic coordinate system ID.getID()
public long getID()
FilterCoordSys
object.
Example:
long id = filterCoordSys.getID();
setID(long)
public void setString(String value)
FilterCoordSys
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()
FilterCoordSys
object.
Example:
String string = filterCoordSys.getString();
setString(java.lang.String)
public void setDatumTransformID(long value)
FilterCoordSys
object.
Example: filterCoordSys.setDatumTransformID(8026);
value
- the Datum transformation ID.getDatumTransformID()
public long getDatumTransformID()
FilterCoordSys
object.
Example: long datumTransformID = filterCoordSys.getDatumTransformID();
setDatumTransformID(long)
public void setDatumTransformString(String value)
FilterCoordSys
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()
FilterCoordSys
object.
Example:
String datumTransformString = filterCoordSys.getDatumTransformString();
setDatumTransformString(java.lang.String)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |