| java.lang.Object org.geotools.referencing.factory.epsg.AxisName
AxisName | final class AxisName (Code) | | A (name, description) pair for a coordinate system axis.
since: 2.3 version: $Id: AxisName.java 20874 2006-08-07 10:00:01Z jgarnett $ author: Martin Desruisseaux |
Field Summary | |
final public String | description The coordinate system axis description, or
null if none. | final public String | name The coordinate system axis name (never
null ). |
Constructor Summary | |
public | AxisName(String name, String description) Creates a new coordinate system axis name. |
Method Summary | |
public boolean | equals(Object object) Compare this name with the specified object for equality. | public int | hashCode() Returns a hash code for this object. | public String | toString() Returns a string representation of this object, for debugging purpose only. |
description | final public String description(Code) | | The coordinate system axis description, or
null if none.
|
name | final public String name(Code) | | The coordinate system axis name (never
null ).
|
AxisName | public AxisName(String name, String description)(Code) | | Creates a new coordinate system axis name.
|
equals | public boolean equals(Object object)(Code) | | Compare this name with the specified object for equality.
|
hashCode | public int hashCode()(Code) | | Returns a hash code for this object.
|
toString | public String toString()(Code) | | Returns a string representation of this object, for debugging purpose only.
|
|
|