org.spase.parser110
Enum EnumPhenomenonType

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

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

Java class for enumPhenomenonType.

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

 <simpleType name="enumPhenomenonType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Aurora"/>
     <enumeration value="BowShockCrossing"/>
     <enumeration value="CoronalMassEjection"/>
     <enumeration value="EnergeticSolarParticleEvent"/>
     <enumeration value="ForbushDecrease"/>
     <enumeration value="GeomagneticStorm"/>
     <enumeration value="InterplanetaryShock"/>
     <enumeration value="MagnetopauseCrossing"/>
     <enumeration value="SolarFlare"/>
     <enumeration value="SolarWindExtreme"/>
     <enumeration value="Statistics"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AURORA
           
BOW_SHOCK_CROSSING
          A crossing of the boundary between the undisturbed (except for foreshock effects) solar wind and the shocked, decelerated solar wind of the magnetosheath.
CORONAL_MASS_EJECTION
          A solar event which involves a burst of plasma which is ejected from the Sun into the interplanetary medium.
ENERGETIC_SOLAR_PARTICLE_EVENT
          An enhancement of interplanetary fluxes of energetic ions accelerated by interplanetary shocks and/or solar flares.
FORBUSH_DECREASE
          A rapid decrease in the observed galactic cosmic ray intensity following the passage of an outwardly convecting interplanetary magnetic field disturbance, such as those associated with large CME's, that sweep some galactic cosmic rays away from Earth.
GEOMAGNETIC_STORM
          A magnetospheric disturbance typically defined by variations in the horizontal component of the Earth's surface magnetic field.
INTERPLANETARY_SHOCK
          A shock propagating generally antisunward through the slower solar wind, often seen in front of CME-associated plasma clouds.
MAGNETOPAUSE_CROSSING
          A crossing of the interface between the shocked solar wind in the magnetosheath and the magnetic field and plasma in the magnetosphere.
SOLAR_FLARE
          An explosive event in the Sun's atmosphere which produces electromagnetic radiation across the electromagnetic spectrum at multiple wavelengths from long-wave radio to the shortest wavelength gamma rays.
SOLAR_WIND_EXTREME
          Intervals of unusually large or small values of solar wind attributes such as flow speed and ion density.
STATISTICS
           
 
Method Summary
static EnumPhenomenonType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumPhenomenonType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumPhenomenonType[] 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

AURORA

public static final EnumPhenomenonType AURORA

BOW_SHOCK_CROSSING

public static final EnumPhenomenonType BOW_SHOCK_CROSSING
A crossing of the boundary between the undisturbed (except for foreshock effects) solar wind and the shocked, decelerated solar wind of the magnetosheath.


CORONAL_MASS_EJECTION

public static final EnumPhenomenonType CORONAL_MASS_EJECTION
A solar event which involves a burst of plasma which is ejected from the Sun into the interplanetary medium.


ENERGETIC_SOLAR_PARTICLE_EVENT

public static final EnumPhenomenonType ENERGETIC_SOLAR_PARTICLE_EVENT
An enhancement of interplanetary fluxes of energetic ions accelerated by interplanetary shocks and/or solar flares.


FORBUSH_DECREASE

public static final EnumPhenomenonType FORBUSH_DECREASE
A rapid decrease in the observed galactic cosmic ray intensity following the passage of an outwardly convecting interplanetary magnetic field disturbance, such as those associated with large CME's, that sweep some galactic cosmic rays away from Earth.


GEOMAGNETIC_STORM

public static final EnumPhenomenonType GEOMAGNETIC_STORM
A magnetospheric disturbance typically defined by variations in the horizontal component of the Earth's surface magnetic field. The variation typically starts with a field enhancement associated with a solar wind pressure pulse and continues with a field depression associated with an enhancement of the diamagnetic magnetospheric ring current.


INTERPLANETARY_SHOCK

public static final EnumPhenomenonType INTERPLANETARY_SHOCK
A shock propagating generally antisunward through the slower solar wind, often seen in front of CME-associated plasma clouds.


MAGNETOPAUSE_CROSSING

public static final EnumPhenomenonType MAGNETOPAUSE_CROSSING
A crossing of the interface between the shocked solar wind in the magnetosheath and the magnetic field and plasma in the magnetosphere.


SOLAR_FLARE

public static final EnumPhenomenonType SOLAR_FLARE
An explosive event in the Sun's atmosphere which produces electromagnetic radiation across the electromagnetic spectrum at multiple wavelengths from long-wave radio to the shortest wavelength gamma rays.


SOLAR_WIND_EXTREME

public static final EnumPhenomenonType SOLAR_WIND_EXTREME
Intervals of unusually large or small values of solar wind attributes such as flow speed and ion density.


STATISTICS

public static final EnumPhenomenonType STATISTICS
Method Detail

values

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

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

valueOf

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