org.spase.parser200
Enum EnumWaveType

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

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

Java class for enumWaveType.

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

 <simpleType name="enumWaveType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Electromagnetic"/>
     <enumeration value="Electrostatic"/>
     <enumeration value="Hydrodynamic"/>
     <enumeration value="MHD"/>
     <enumeration value="Photon"/>
     <enumeration value="PlasmaWaves"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ELECTROMAGNETIC
          Electric and magnetic field variations in time and space that propagate through a medium or a vacuum with the wave’s propagation, electric field, and magnetic field vectors forming an orthogonal triad.
ELECTROSTATIC
          Collective longitudinal electric-field and plasma oscillations trapped within a body of plasma.
HYDRODYNAMIC
          Periodic or quasi-periodic oscillations of fluid quantities.
MHD
          Hydrodynamic waves in a magnetized plasma in which the background magnetic field plays a key role in controlling the wave propagation characteristics.
PHOTON
          Electromagnetic waves detected by techniques that utilize their corpuscular character (e.g., CCD, CMOS, photomultipliers).
PLASMA_WAVES
          Self-consistent collective oscillations of particles and fields (electric and magnetic) in a plasma.
 
Method Summary
static EnumWaveType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumWaveType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumWaveType[] 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

ELECTROMAGNETIC

public static final EnumWaveType ELECTROMAGNETIC
Electric and magnetic field variations in time and space that propagate through a medium or a vacuum with the wave’s propagation, electric field, and magnetic field vectors forming an orthogonal triad. Waves in this category are detected by having their field quantities measured.


ELECTROSTATIC

public static final EnumWaveType ELECTROSTATIC
Collective longitudinal electric-field and plasma oscillations trapped within a body of plasma.


HYDRODYNAMIC

public static final EnumWaveType HYDRODYNAMIC
Periodic or quasi-periodic oscillations of fluid quantities.


MHD

public static final EnumWaveType MHD
Hydrodynamic waves in a magnetized plasma in which the background magnetic field plays a key role in controlling the wave propagation characteristics.


PHOTON

public static final EnumWaveType PHOTON
Electromagnetic waves detected by techniques that utilize their corpuscular character (e.g., CCD, CMOS, photomultipliers).


PLASMA_WAVES

public static final EnumWaveType PLASMA_WAVES
Self-consistent collective oscillations of particles and fields (electric and magnetic) in a plasma.

Method Detail

values

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

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

valueOf

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