org.spase.parser110
Enum EnumPhotonQualifier

java.lang.Object
  extended by java.lang.Enum<EnumPhotonQualifier>
      extended by org.spase.parser110.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="Average"/>
     <enumeration value="Circular"/>
     <enumeration value="LineofSight"/>
     <enumeration value="Linear"/>
     <enumeration value="Peak"/>
     <enumeration value="StokesParameters"/>
     <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.
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.
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.
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 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

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.


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.


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.


VECTOR

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

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)