Jeospace API

Uses of Class
org.jeospace.measure.angle.AngleSign

Packages that use AngleSign
org.jeospace.measure.angle Contains classes that support angular measurements. 
org.jeospace.text Contains classes for handling the textual representation of measurement and identity objects 
 

Uses of AngleSign in org.jeospace.measure.angle
 

Fields in org.jeospace.measure.angle declared as AngleSign
static AngleSign Longitude.EAST
          Constant identifier indicating a positive direction of the Longitude.
static AngleSign Longitude.WEST
          Constant identifier indicating a negative direction of the Longitude.
static AngleSign Latitude.NORTH
          Constant identifier indicating a positive direction of the Latitude.
static AngleSign Latitude.SOUTH
          Constant identifier indicating a negative direction of the Latitude.
static AngleSign AngleSign.POSITIVE
          Constant indicating a rotation in the positive direction
static AngleSign AngleSign.NEGATIVE
          Constant indicating a rotation in the negative direction
 

Methods in org.jeospace.measure.angle that return AngleSign
 AngleSign DecimalAngle.getSign()
          Get the AngleSign of this DecimalAngle.
 AngleSign SexagesimalAngle.getSign()
          Get the AngleSign of this SexagesimalAngle.
 AngleSign Angle.getSign()
          Get the AngleSign of this Angle.
static AngleSign[] AngleSign.getAngleSigns()
          Return an array of the defined AngleSign objects
 

Methods in org.jeospace.measure.angle with parameters of type AngleSign
 void Longitude.set(SexagesimalAngleType type, AngleSign sign, double unitsValue)
          Set this Longitude to the specified value in the SexagesimalAngleType.
 void Longitude.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, double minutes)
          Set this Longitude to the specified value in the SexagesimalAngleType.
 void Longitude.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, double seconds)
          Set this Longitude to the specified value in the SexagesimalAngleType.
 void Longitude.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, int seconds, int microseconds)
          Set this Longitude to the specified value in the SexagesimalAngleType.
 void Latitude.set(SexagesimalAngleType type, AngleSign sign, double unitsValue)
          Set this Latitude to the specified value in the SexagesimalAngleType.
 void Latitude.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, double minutes)
          Set this Latitude to the specified value in the SexagesimalAngleType.
 void Latitude.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, double seconds)
          Set this Latitude to the specified value in the SexagesimalAngleType.
 void Latitude.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, int seconds, int microseconds)
          Set this Latitude to the specified value in the SexagesimalAngleType.
 void DecimalAngle.set(SexagesimalAngleType type, AngleSign sign, double unitsValue)
          Set this DecimalAngle to the specified value in the SexagesimalAngleType.
 void DecimalAngle.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, double minutes)
          Set this DecimalAngle to the specified value in the SexagesimalAngleType.
 void DecimalAngle.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, double seconds)
          Set this DecimalAngle to the specified value in the SexagesimalAngleType.
 void DecimalAngle.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, int seconds, int microseconds)
          Set this DecimalAngle to the specified value in the SexagesimalAngleType.
 void SexagesimalAngle.set(SexagesimalAngleType type, AngleSign sign, double unitsValue)
          Set this SexagesimalAngle to the specified value in the SexagesimalAngleType.
 void SexagesimalAngle.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, double minutes)
          Set this SexagesimalAngle to the specified value in the SexagesimalAngleType.
 void SexagesimalAngle.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, double seconds)
          Set this SexagesimalAngle to the specified value in the SexagesimalAngleType.
 void SexagesimalAngle.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, int seconds, int microseconds)
          Set this SexagesimalAngle to the specified value in the SexagesimalAngleType.
 void Angle.set(SexagesimalAngleType type, AngleSign sign, double unitsValue)
          Set this Angle to the specified value in the SexagesimalAngleType.
 void Angle.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, double minutes)
          Set this Angle to the specified value in the SexagesimalAngleType.
 void Angle.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, double seconds)
          Set this Angle to the specified value in the SexagesimalAngleType.
 void Angle.set(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, int seconds, int microseconds)
          Set this Angle to the specified value in the SexagesimalAngleType.
 

Constructors in org.jeospace.measure.angle with parameters of type AngleSign
Longitude(SexagesimalAngleType type, AngleSign sign, double unitsValue)
          Construct a Longitude initialized to the value and units specified.
Longitude(SexagesimalAngleType type, AngleSign sign, int unitsValue, double minutes)
          Construct a Longitude initialized to the value and units specified.
Longitude(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, double seconds)
          Construct a Longitude initialized to the value and units specified.
Longitude(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, int seconds, int microseconds)
          Construct a Longitude initialized to the value and units specified.
Latitude(SexagesimalAngleType type, AngleSign sign, double unitsValue)
          Construct a Latitude initialized to the value and units specified.
Latitude(SexagesimalAngleType type, AngleSign sign, int unitsValue, double minutes)
          Construct a Latitude initialized to the value and units specified.
Latitude(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, double seconds)
          Construct a Latitude initialized to the value and units specified.
Latitude(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, int seconds, int microseconds)
          Construct a Latitude initialized to the value and units specified.
DecimalAngle(SexagesimalAngleType type, AngleSign sign, double unitsValue)
          Construct a DecimalAngle initialized to the value and units specified.
DecimalAngle(SexagesimalAngleType type, AngleSign sign, int unitsValue, double minutes)
          Construct a DecimalAngle initialized to the value and units specified.
DecimalAngle(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, double seconds)
          Construct a DecimalAngle initialized to the value and units specified.
DecimalAngle(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, int seconds, int microseconds)
          Construct a DecimalAngle initialized to the value and units specified.
SexagesimalAngle(SexagesimalAngleType type, AngleSign sign, double unitsValue)
          Construct a SexagesimalAngle initialized to the value and units specified.
SexagesimalAngle(SexagesimalAngleType type, AngleSign sign, int unitsValue, double minutes)
          Construct a SexagesimalAngle initialized to the value and units specified.
SexagesimalAngle(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, double seconds)
          Construct a SexagesimalAngle initialized to the value and units specified.
SexagesimalAngle(SexagesimalAngleType type, AngleSign sign, int unitsValue, int minutes, int seconds, int microseconds)
          Construct a SexagesimalAngle initialized to the value and units specified.
 

Uses of AngleSign in org.jeospace.text
 

Fields in org.jeospace.text declared as AngleSign
protected  AngleSign AngleFormat.zeroSign
          The sign to use if the angle has a value of zero.
 

Methods in org.jeospace.text that return AngleSign
 AngleSign AngleFormat.getZeroAngleSign()
          Return the AngleSign value being used if the value of the angle is zero.
 

Methods in org.jeospace.text with parameters of type AngleSign
 void AngleFormat.setZeroAngleSign(AngleSign zeroSign)
          Set the AngleSign value to be used if the value of the angle is zero.
protected  java.lang.String AngleFormat.processAffix(AngleSign sign, boolean isZero)
          Return the directional affix that matches the style and angle value
 


Jeospace API

Copyright © 2006 - jeospace.org