org.spase.parser122
Enum EnumCoordinateRepresentation

java.lang.Object
  extended by java.lang.Enum<EnumCoordinateRepresentation>
      extended by org.spase.parser122.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 system in which the position of a point is determined by its distance from two or three mutually perpendicular axes.
CYLINDRICAL
          A system of curvilinear coordinates in which the position of a point in space is determined by its perpendicular distance from a given line, its distance from a selected reference plane perpendicular to this line, and its angular distance from a selected reference line when projected onto this plane.
SPHERICAL
          A system of curvilinear coordinates characterized by an azimuthal angle (longitude), a polar angle (latitude), and a distance (radius) from a point to the origin.
 
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 system in which the position of a point is determined by its distance from two or three mutually perpendicular axes.


CYLINDRICAL

public static final EnumCoordinateRepresentation CYLINDRICAL
A system of curvilinear coordinates in which the position of a point in space is determined by its perpendicular distance from a given line, its distance from a selected reference plane perpendicular to this line, and its angular distance from a selected reference line when projected onto this plane.


SPHERICAL

public static final EnumCoordinateRepresentation SPHERICAL
A system of curvilinear coordinates characterized by an azimuthal angle (longitude), a polar angle (latitude), and a distance (radius) from a point to the origin.

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)