|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.c5corp.c5utm.Point
public class Point
public class Point
Point.java - part of Landscape database (otherwise known as the C5UTM
database). A Point
is just a structure to hold the
fields from a UTM_COORDS record. It provides constructor and accessor
methods for all fields. Usually you will not create and instance
of this class yourself, but will use the static methods in the C5UTM class
class to create a Point from a query of some sort. If you do encounter
"Artifical" points, it is likely to be mediated by the ArtificialPoints
class. This class also provides a toString() method.
Clean up this docu! (See sql for doc on params...)
Points
,
ArtificialPoints
Constructor Summary | |
---|---|
Point()
Default constructor for the Point class |
|
Point(int zone,
int easting,
int northing,
int elevation,
java.lang.String dem_id,
java.lang.String id)
Constructor for the Point class. |
|
Point(int zone,
UtmCoordinatePairElev point)
Constructor for the Point class which constructs a Point from a UTM zone and a com.c5corp.c5dem.UtmCoordinatePairElev object. |
Method Summary | |
---|---|
java.lang.String |
getDemId()
public getDemId() accesses the elevation member |
int |
getEasting()
public getEasting() accesses the easting member |
int |
getElevation()
public getElevation() accesses the elevation member |
java.lang.String |
getId()
public getId() accesses the id member |
int |
getNorthing()
public getNorthing() accesses the northing member |
int |
getZone()
public getZone() accesses the zone member |
java.lang.String |
toString()
overrides toString() of the Object class |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Point()
public Point(int zone, int easting, int northing, int elevation, java.lang.String dem_id, java.lang.String id)
zone
- the UTM zoneeasting
- the UTM eastingnorthing
- the UTM northingelevation
- the elevationdem_id
- the database id of the containing demid
- the database idpublic Point(int zone, UtmCoordinatePairElev point)
zone
- the UTM zonepoint
- a UtmCorrdinatePairElevMethod Detail |
---|
public int getZone()
public getZone()
accesses the zone member
public int getEasting()
public getEasting()
accesses the easting member
public int getNorthing()
public getNorthing()
accesses the northing member
public int getElevation()
public getElevation()
accesses the elevation member
public java.lang.String getDemId()
public getDemId()
accesses the elevation member
public java.lang.String getId()
public getId()
accesses the id member
public java.lang.String toString()
toString
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |