com.esri.aims.mtier.model.map.environment
Class Separators

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

public class Separators
extends Object
implements Serializable

Identifies separators used between x, y coordinates and coordinate pairs, and as separators for lists of strings.

See Also:
Serialized Form

Constructor Summary
Separators()
          Constructs an instance of a Separators object.
 
Method Summary
 String getCS()
          Returns the coordinate separator associated with this Separators object.
 String getTS()
          Returns the tuple separator value associated with this Separators object.
 void setCS(String value)
          Sets the coordinate separator for this Separators object.
 void setTS(String value)
          Sets the tuple separator value for this Separators object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Separators

public Separators()
Constructs an instance of a Separators object. Example:
Separators separators = new Separators();

Method Detail

setCS

public void setCS(String value)
Sets the coordinate separator for this Separators object. Example:
separators.setCS(",");

Parameters:
value - the coordiante separator value.
See Also:
getCS()

getCS

public String getCS()
Returns the coordinate separator associated with this Separators object. Example:
String cs = separators.getCS();

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

setTS

public void setTS(String value)
Sets the tuple separator value for this Separators object. Example:
separators.setTS(":");

Parameters:
value - the tuple separator value.
See Also:
getTS()

getTS

public String getTS()
Returns the tuple separator value associated with this Separators object. Example:
String ts = separators.getTS();

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