com.esri.aims.mtier.model.map.projection
Class FilterCoordSys

java.lang.Object
  extended by com.esri.aims.mtier.model.map.projection.FilterCoordSys
All Implemented Interfaces:
Serializable

public class FilterCoordSys
extends Object
implements Serializable

Represents the current coordinate system for layers in a service or a specific service.

See Also:
Serialized Form

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

FilterCoordSys

public FilterCoordSys()
Constructs an instance of the FilterCoordSys object. Example:
FilterCoordSys filterCoordSys = new FilterCoordSys();

Method Detail

setID

public void setID(long value)
Sets the projected or geographic coordinate system ID for this FilterCoordSys object. Example:
 filterCoordSys.setID(4326);
 

Parameters:
value - the projected or geographic coordinate system ID.
See Also:
getID()

getID

public long getID()
Returns the projected or geographic coordinate system ID associated with this FilterCoordSys object. Example:
 long id = filterCoordSys.getID();
 

Returns:
the projected or geographic coordinate system ID.
See Also:
setID(long)

setString

public void setString(String value)
Sets the projected or geographic coordinate system definition string for this FilterCoordSys object. Usually this method is only used for coordinate systems which do not have an id that is understood by the setID method.
 For Example,
   filterCoordSys.setString("PROJCS[\"World_Mollweide\",GEOGCS[\"GCS_WGS_1984\",DATUM[\"D_WGS_1984\",SPHEROID[\"WGS_1984\",6378137,298.257223563]],PRIMEM[\"Greenwich\",0],UNIT[\"Degree\",0.017453292519943295]],PROJECTION[\"Mollweide\"],PARAMETER[\"False_Easting\",0],PARAMETER[\"False_Northing\",0],PARAMETER[\"Central_Meridian\",0],UNIT[\"Meter\",1]]");
 

Parameters:
value - the projected or geographic coordinate system definition string.
See Also:
getString()

getString

public String getString()
Returns the the projected or geographic coordinate system definition string for this FilterCoordSys object. Example:
 String string = filterCoordSys.getString();
 

Returns:
String
See Also:
setString(java.lang.String)

setDatumTransformID

public void setDatumTransformID(long value)
Sets the Datum transformation ID for this FilterCoordSys object. Example:
filterCoordSys.setDatumTransformID(8026);

Parameters:
value - the Datum transformation ID.
See Also:
getDatumTransformID()

getDatumTransformID

public long getDatumTransformID()
Returns the Datum transformation ID FilterCoordSys object. Example:
long datumTransformID = filterCoordSys.getDatumTransformID();

Returns:
the Datum transformation ID.
See Also:
setDatumTransformID(long)

setDatumTransformString

public void setDatumTransformString(String value)
Sets the Datum transformation definition string for this FilterCoordSys object. Refer to the ArcXML Programmer's Reference Help for details on the datum transform string value to set.

Parameters:
value - the datum transformation definition string.
See Also:
getDatumTransformString()

getDatumTransformString

public String getDatumTransformString()
Returns the Datum transformation definition string associated with this FilterCoordSys object. Example:
 String datumTransformString = filterCoordSys.getDatumTransformString();
 

Returns:
the Datum transformation definition string
See Also:
setDatumTransformString(java.lang.String)