org.spase.parser110
Enum EnumOrientation

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

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

Java class for enumOrientation.

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

 <simpleType name="enumOrientation">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="H"/>
     <enumeration value="Phi"/>
     <enumeration value="R"/>
     <enumeration value="Theta"/>
     <enumeration value="X"/>
     <enumeration value="Y"/>
     <enumeration value="Z"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
H
          TheHierarchical Data Format
PHI
          The component of a vector in a sperical coordinate system in the direction of the angle between the x-axis and the line from the origin to the measured point.
R
          The component of a vector along in the radial direction in a spherical system.
THETA
          The component of a vector in a sperical coordinate system in the direction of the angle between the z-axis and the line from the origin to the measured point.
X
          The component of a vector along the X-axis in a cartessian coordinate system.
Y
          The component of a vector along the Y-axis in a cartessian coordinate system.
Z
          The component of a vector along the Z-axis in a cartessian coordinate system.
 
Method Summary
static EnumOrientation fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumOrientation valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumOrientation[] 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

H

public static final EnumOrientation H
TheHierarchical Data Format


PHI

public static final EnumOrientation PHI
The component of a vector in a sperical coordinate system in the direction of the angle between the x-axis and the line from the origin to the measured point.


R

public static final EnumOrientation R
The component of a vector along in the radial direction in a spherical system.


THETA

public static final EnumOrientation THETA
The component of a vector in a sperical coordinate system in the direction of the angle between the z-axis and the line from the origin to the measured point. In a cylindical coordinate system it is the angle between the x-axis and the line from the origin to the point.


X

public static final EnumOrientation X
The component of a vector along the X-axis in a cartessian coordinate system.


Y

public static final EnumOrientation Y
The component of a vector along the Y-axis in a cartessian coordinate system.


Z

public static final EnumOrientation Z
The component of a vector along the Z-axis in a cartessian coordinate system.

Method Detail

values

public static final EnumOrientation[] 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(EnumOrientation c : EnumOrientation.values())
        System.out.println(c);

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

valueOf

public static EnumOrientation 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 EnumOrientation fromValue(java.lang.String v)