org.spase.parser121
Enum EnumStructureType

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

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

Java class for enumStructureType.

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

 <simpleType name="enumStructureType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Array"/>
     <enumeration value="Scalar"/>
     <enumeration value="Tensor"/>
     <enumeration value="Vector"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ARRAY
          A sequence of values corresponding to the elements in a rectilinear, n-dimension matrix.
SCALAR
          A quantity that is completely specified by its magnitude and has no direction.
TENSOR
          A generalized linear "quantity" or "geometrical entity" that can be expressed as a multi-dimensional array relative to a choice of basis of the particular space on which it is defined.
VECTOR
          A set of parameter values each along some independent variable (e.g., components of a field in three orthogonal spatial directions; atmospheric temperature values at several altitudes, or at a given latitude and longitude;).
 
Method Summary
static EnumStructureType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumStructureType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumStructureType[] 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

ARRAY

public static final EnumStructureType ARRAY
A sequence of values corresponding to the elements in a rectilinear, n-dimension matrix. Each value can be referenced by a unique index.


SCALAR

public static final EnumStructureType SCALAR
A quantity that is completely specified by its magnitude and has no direction.


TENSOR

public static final EnumStructureType TENSOR
A generalized linear "quantity" or "geometrical entity" that can be expressed as a multi-dimensional array relative to a choice of basis of the particular space on which it is defined.


VECTOR

public static final EnumStructureType VECTOR
A set of parameter values each along some independent variable (e.g., components of a field in three orthogonal spatial directions; atmospheric temperature values at several altitudes, or at a given latitude and longitude;).

Method Detail

values

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

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

valueOf

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