org.spase.parser200
Enum EnumDirectionAngle

java.lang.Object
  extended by java.lang.Enum<EnumDirectionAngle>
      extended by org.spase.parser200.EnumDirectionAngle
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EnumDirectionAngle>

public enum EnumDirectionAngle
extends java.lang.Enum<EnumDirectionAngle>

Java class for enumDirectionAngle.

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

 <simpleType name="enumDirectionAngle">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="AzimuthAngle"/>
     <enumeration value="ElevationAngle"/>
     <enumeration value="PolarAngle"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AZIMUTH_ANGLE
          The angle between the projection into the i-j plane of a position or measured vector and the i-axis of the coordinate system.
ELEVATION_ANGLE
          The angle between the position or measured vector and the i-j plane of the coordinate system.
POLAR_ANGLE
          The angle between the position or measured vector and the k-axis of the coordinate system.
 
Method Summary
static EnumDirectionAngle fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumDirectionAngle valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumDirectionAngle[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AZIMUTH_ANGLE

public static final EnumDirectionAngle AZIMUTH_ANGLE
The angle between the projection into the i-j plane of a position or measured vector and the i-axis of the coordinate system. Mathematically defined as arctan(j/i).


ELEVATION_ANGLE

public static final EnumDirectionAngle ELEVATION_ANGLE
The angle between the position or measured vector and the i-j plane of the coordinate system. Mathematically defined as arctan(k/SQRT(i^2+j^2)).


POLAR_ANGLE

public static final EnumDirectionAngle POLAR_ANGLE
The angle between the position or measured vector and the k-axis of the coordinate system. Mathematically defined as arctan([SQRT(i^2+j^2)]/k).

Method Detail

values

public static final EnumDirectionAngle[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(EnumDirectionAngle c : EnumDirectionAngle.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static EnumDirectionAngle valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

value

public java.lang.String value()

fromValue

public static EnumDirectionAngle fromValue(java.lang.String v)