org.spase.parser110
Enum EnumParticleQualifier

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

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

Java class for enumParticleQualifier.

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

 <simpleType name="enumParticleQualifier">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Average"/>
     <enumeration value="Component"/>
     <enumeration value="Deviation"/>
     <enumeration value="Differential"/>
     <enumeration value="Fit"/>
     <enumeration value="Integral"/>
     <enumeration value="Magnitude"/>
     <enumeration value="Moment"/>
     <enumeration value="Parallel"/>
     <enumeration value="Peak"/>
     <enumeration value="Perpendicular"/>
     <enumeration value="Ratio"/>
     <enumeration value="Variance"/>
     <enumeration value="Vector"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AVERAGE
          The statistical mean; the sum of a set of values divided by the number of values in the set.
COMPONENT
          A part of a multi-part entity, e.g., the components of a vector.
DEVIATION
          The difference between an observed value and the expected value of a quantity.
DIFFERENTIAL
          The ratio of the intensity of radiant energy scattered in a given direction to the incident irradiance and thus has dimensions of area per unit solid angle.
FIT
          Values that make an model agree with the data.
INTEGRAL
          The summation of values over a given area or range.
MAGNITUDE
          A measure of the strength or size of a vector quantity.
MOMENT
          Parameters determined by integration over a distribution function convolved with a power of velocity.
PARALLEL
          Having the same direction as a given direction
PEAK
          The maximum value for the quantity in question, over a period of time which is usually equal to the cadence.
PERPENDICULAR
          At right angles to a given direction.
RATIO
          The relative magnitudes of two quantities.
VARIANCE
          A measure of dispersion of a set of data points around their mean value.
VECTOR
          A quantity having both magnitude and direction, e.g.
 
Method Summary
static EnumParticleQualifier fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumParticleQualifier valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumParticleQualifier[] 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

AVERAGE

public static final EnumParticleQualifier AVERAGE
The statistical mean; the sum of a set of values divided by the number of values in the set.


COMPONENT

public static final EnumParticleQualifier COMPONENT
A part of a multi-part entity, e.g., the components of a vector.


DEVIATION

public static final EnumParticleQualifier DEVIATION
The difference between an observed value and the expected value of a quantity.


DIFFERENTIAL

public static final EnumParticleQualifier DIFFERENTIAL
The ratio of the intensity of radiant energy scattered in a given direction to the incident irradiance and thus has dimensions of area per unit solid angle.


FIT

public static final EnumParticleQualifier FIT
Values that make an model agree with the data.


INTEGRAL

public static final EnumParticleQualifier INTEGRAL
The summation of values over a given area or range.


MAGNITUDE

public static final EnumParticleQualifier MAGNITUDE
A measure of the strength or size of a vector quantity.


MOMENT

public static final EnumParticleQualifier MOMENT
Parameters determined by integration over a distribution function convolved with a power of velocity.


PARALLEL

public static final EnumParticleQualifier PARALLEL
Having the same direction as a given direction


PEAK

public static final EnumParticleQualifier PEAK
The maximum value for the quantity in question, over a period of time which is usually equal to the cadence.


PERPENDICULAR

public static final EnumParticleQualifier PERPENDICULAR
At right angles to a given direction.


RATIO

public static final EnumParticleQualifier RATIO
The relative magnitudes of two quantities.


VARIANCE

public static final EnumParticleQualifier VARIANCE
A measure of dispersion of a set of data points around their mean value. The expectation value of the squared deviations from the mean.


VECTOR

public static final EnumParticleQualifier VECTOR
A quantity having both magnitude and direction, e.g. displacement, velocity, acceleration and force.

Method Detail

values

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

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

valueOf

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