org.spase.parser122
Enum EnumPhotonQualifier

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

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

Java class for enumPhotonQualifier.

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

 <simpleType name="enumPhotonQualifier">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Array"/>
     <enumeration value="Average"/>
     <enumeration value="Circular"/>
     <enumeration value="LineofSight"/>
     <enumeration value="Linear"/>
     <enumeration value="Peak"/>
     <enumeration value="Scalar"/>
     <enumeration value="StandardDeviation"/>
     <enumeration value="StokesParameters"/>
     <enumeration value="Uncertainty"/>
     <enumeration value="Variance"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ARRAY
          A sequence of values corresponding to the elements in a rectilinear, n-dimension matrix.
AVERAGE
          The statistical mean; the sum of a set of values divided by the number of values in the set.
CIRCULAR
          Relative to polarization, right-hand circularly polarized light is defined such that the electric field is rotating clockwise as seen by an observer towards whom the wave is moving.
LINEAR
          Relative to polarization, confinement of the E-field vector to a given plane
LINEOF_SIGHT
          The line of sight is the line that connects the observer with the observed object.
PEAK
          The maximum value for the quantity in question, over a period of time which is usually equal to the cadence.
SCALAR
          A quantity that is completely specified by its magnitude and has no direction.
STANDARD_DEVIATION
          The square root of the average of the squares of deviations about the mean of a set of data.
STOKES_PARAMETERS
          The four coordinates (usually called I, Q, U, and V) relative to a particular basis for the representation of the polarization state of an electromagnetic wave propagating through space.
UNCERTAINTY
          A statistically defined discrepancy between a measured quantity and the true value of that quantity that cannot be corrected by calculation or calibration.
VARIANCE
          A measure of dispersion of a set of data points around their mean value.
 
Method Summary
static EnumPhotonQualifier fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumPhotonQualifier valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumPhotonQualifier[] 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 EnumPhotonQualifier ARRAY
A sequence of values corresponding to the elements in a rectilinear, n-dimension matrix. Each value can be referenced by a unique index.


AVERAGE

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


CIRCULAR

public static final EnumPhotonQualifier CIRCULAR
Relative to polarization, right-hand circularly polarized light is defined such that the electric field is rotating clockwise as seen by an observer towards whom the wave is moving. Left-hand circularly polarized light is defined such that the electric field is rotating counterclockwise as seen by an observer towards whom the wave is moving. The polarization of magnetohydrodynamic waves is specified with respect to the ambient mean magnetic field : right-hand polarized waves have a transverse electric field component which turns in a right-handed sense (that of the gyrating electrons) around the magnetic field.


LINEOF_SIGHT

public static final EnumPhotonQualifier LINEOF_SIGHT
The line of sight is the line that connects the observer with the observed object. This expression is often used with measurements of Doppler velocity and magnetic field in magnetograms, where only the component of the vector field directed along the line of sight is measured.


LINEAR

public static final EnumPhotonQualifier LINEAR
Relative to polarization, confinement of the E-field vector to a given plane


PEAK

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


SCALAR

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


STANDARD_DEVIATION

public static final EnumPhotonQualifier STANDARD_DEVIATION
The square root of the average of the squares of deviations about the mean of a set of data. Standard deviation is a statistical measure of spread or variability.


STOKES_PARAMETERS

public static final EnumPhotonQualifier STOKES_PARAMETERS
The four coordinates (usually called I, Q, U, and V) relative to a particular basis for the representation of the polarization state of an electromagnetic wave propagating through space.


UNCERTAINTY

public static final EnumPhotonQualifier UNCERTAINTY
A statistically defined discrepancy between a measured quantity and the true value of that quantity that cannot be corrected by calculation or calibration.


VARIANCE

public static final EnumPhotonQualifier 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.

Method Detail

values

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

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

valueOf

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