org.spase.parser110
Enum EnumPhotonQuantity

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

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

Java class for enumPhotonQuantity.

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

 <simpleType name="enumPhotonQuantity">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Emissivity"/>
     <enumeration value="EquivalentWidth"/>
     <enumeration value="Flux"/>
     <enumeration value="Intensity"/>
     <enumeration value="LineDepth"/>
     <enumeration value="MagneticField"/>
     <enumeration value="ModeAmplitude"/>
     <enumeration value="Polarization"/>
     <enumeration value="StokesParameters"/>
     <enumeration value="Velocity"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
EMISSIVITY
          The ratio of radiant energy from a material to that from a blackbody at the same kinetic temperature
EQUIVALENT_WIDTH
          The area of the spectral line profile divided by the peak height or depth.
FLUX
          In radiation studies, this refers to the amount of radiant energy passing through a unit area
INTENSITY
          The amount of energy transmitted by electromagnetic radiation, for example, the number of photons arriving in a given time.
LINE_DEPTH
          In spectra, a measure of the amount of absorption for a particular wavelength or frequency in the spectrum
MAGNETIC_FIELD
          Measurements of magnetic field vectors (sometimes not all components) as time series; can be space- or ground-based.
MODE_AMPLITUDE
          In helioseismology the magnitude of oscillation of waves of a particular geometry.
POLARIZATION
          Direction of the electric vector of an electromagnetic wave.
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.
VELOCITY
          Rate of change of position.
 
Method Summary
static EnumPhotonQuantity fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumPhotonQuantity valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumPhotonQuantity[] 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

EMISSIVITY

public static final EnumPhotonQuantity EMISSIVITY
The ratio of radiant energy from a material to that from a blackbody at the same kinetic temperature


EQUIVALENT_WIDTH

public static final EnumPhotonQuantity EQUIVALENT_WIDTH
The area of the spectral line profile divided by the peak height or depth.


FLUX

public static final EnumPhotonQuantity FLUX
In radiation studies, this refers to the amount of radiant energy passing through a unit area


INTENSITY

public static final EnumPhotonQuantity INTENSITY
The amount of energy transmitted by electromagnetic radiation, for example, the number of photons arriving in a given time.


LINE_DEPTH

public static final EnumPhotonQuantity LINE_DEPTH
In spectra, a measure of the amount of absorption for a particular wavelength or frequency in the spectrum


MAGNETIC_FIELD

public static final EnumPhotonQuantity MAGNETIC_FIELD
Measurements of magnetic field vectors (sometimes not all components) as time series; can be space- or ground-based. Also, [Zeeman splitting, etc. based]: A region of space near a magnetized body where magnetic forces can be detected [as measured by methods such as Zeeman splitting, etc.]


MODE_AMPLITUDE

public static final EnumPhotonQuantity MODE_AMPLITUDE
In helioseismology the magnitude of oscillation of waves of a particular geometry.


POLARIZATION

public static final EnumPhotonQuantity POLARIZATION
Direction of the electric vector of an electromagnetic wave. The wave can be linearly polarized in any direction perpendicular to the direction of travel, circularly polarized (clockwise or counterclockwise), unpolarized, or mixtures of the above.


STOKES_PARAMETERS

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


VELOCITY

public static final EnumPhotonQuantity VELOCITY
Rate of change of position. Also used for the average velocity of a collection of particles, also referred to as "bulk velocity".

Method Detail

values

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

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

valueOf

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