com.esri.arcgisws
Class PointN

java.lang.Object
  extended by com.esri.arcgisws.Geometry
      extended by com.esri.arcgisws.Point
          extended by com.esri.arcgisws.PointN
All Implemented Interfaces:
Serializable

public class PointN
extends Point
implements Serializable

A two dimensional point, optionally with measure, height, and ID attributes.

Java class for PointN complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="PointN">
   <complexContent>
     <extension base="{http://www.esri.com/schemas/ArcGIS/9.3}Point">
       <sequence>
         <element name="X" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="Y" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="M" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
         <element name="Z" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
         <element name="ID" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
         <element name="SpatialReference" type="{http://www.esri.com/schemas/ArcGIS/9.3}SpatialReference" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
A two dimensional point, optionally with measure, height, and ID attributes.

See Also:
Serialized Form

Constructor Summary
PointN()
          PointN default constructor.
PointN(double x, double y, Double m, Double z, Integer id, SpatialReference spatialReference)
          Deprecated. 
 
Method Summary
 Integer getID()
          The Point ID attribute.
 Double getM()
          The measure attribute.
 SpatialReference getSpatialReference()
          The spatial reference associated with this geometry.
 double getX()
          The X coordinate.
 double getY()
          The Y coordinate.
 Double getZ()
          The Z attribute.
 void setID(Integer value)
          The Point ID attribute.
 void setM(Double value)
          The measure attribute.
 void setSpatialReference(SpatialReference value)
          The spatial reference associated with this geometry.
 void setX(double value)
          The X coordinate.
 void setY(double value)
          The Y coordinate.
 void setZ(Double value)
          The Z attribute.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PointN

@Deprecated
public PointN(double x,
                         double y,
                         Double m,
                         Double z,
                         Integer id,
                         SpatialReference spatialReference)
Deprecated. 

PointN constructor.


PointN

public PointN()
PointN default constructor.

Method Detail

getX

public double getX()
The X coordinate. Gets the value of the x property.


setX

public void setX(double value)
The X coordinate. Sets the value of the x property.


getY

public double getY()
The Y coordinate. Gets the value of the y property.


setY

public void setY(double value)
The Y coordinate. Sets the value of the y property.


getM

public Double getM()
The measure attribute. Gets the value of the m property.

Returns:
possible object is Double

setM

public void setM(Double value)
The measure attribute. Sets the value of the m property.

Parameters:
value - allowed object is Double

getZ

public Double getZ()
The Z attribute. Gets the value of the z property.

Returns:
possible object is Double

setZ

public void setZ(Double value)
The Z attribute. Sets the value of the z property.

Parameters:
value - allowed object is Double

getID

public Integer getID()
The Point ID attribute. Gets the value of the id property.

Returns:
possible object is Integer

setID

public void setID(Integer value)
The Point ID attribute. Sets the value of the id property.

Parameters:
value - allowed object is Integer

getSpatialReference

public SpatialReference getSpatialReference()
The spatial reference associated with this geometry. Gets the value of the spatialReference property.

Returns:
possible object is SpatialReference

setSpatialReference

public void setSpatialReference(SpatialReference value)
The spatial reference associated with this geometry. Sets the value of the spatialReference property.

Parameters:
value - allowed object is SpatialReference