org.spase.parser134
Enum EnumCoordinateRepresentation

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

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

Java class for enumCoordinateRepresentation.

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

 <simpleType name="enumCoordinateRepresentation">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Cartesian"/>
     <enumeration value="Cylindrical"/>
     <enumeration value="Spherical"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CARTESIAN
          A coordinate representation in which a position vector or a measured vector (e.g., field or flow) is specified by its components along the base axes of the coordinate system.
CYLINDRICAL
          A coordinate representation of a position vector or measured vector (field or flow) by its z-component, the magnitude of its projection into the x-y plane, and the azimuthal angle of the x-y plane projection.
SPHERICAL
          A coordinate representation of a position vector or of a measured vector by its magnitude and two direction angles.
 
Method Summary
static EnumCoordinateRepresentation fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumCoordinateRepresentation valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumCoordinateRepresentation[] 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

CARTESIAN

public static final EnumCoordinateRepresentation CARTESIAN
A coordinate representation in which a position vector or a measured vector (e.g., field or flow) is specified by its components along the base axes of the coordinate system.


CYLINDRICAL

public static final EnumCoordinateRepresentation CYLINDRICAL
A coordinate representation of a position vector or measured vector (field or flow) by its z-component, the magnitude of its projection into the x-y plane, and the azimuthal angle of the x-y plane projection.


SPHERICAL

public static final EnumCoordinateRepresentation SPHERICAL
A coordinate representation of a position vector or of a measured vector by its magnitude and two direction angles. The angles are relative to the base axes of the coordinate system used. Typically the angles are phi [azimuth angle, =arctan (y/x)] and theta, where theta may be a polar angle, arctan {[SQRT(x**2+y**2)]/z}, or an elevation angle, arctan [z/SQRT (x**2+y**2)].

Method Detail

values

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

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

valueOf

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