org.spase.parser122
Enum EnumSun

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

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

Java class for enumSun.

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

 <simpleType name="enumSun">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Chromosphere"/>
     <enumeration value="Corona"/>
     <enumeration value="Interior"/>
     <enumeration value="Photosphere"/>
     <enumeration value="TransitionRegion"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CHROMOSPHERE
          The region of the Sun's (or a star's) atmosphere above the temperature minimum and below the Transition Region.
CORONA
          The outermost atmospheric region of the Sun or a star, characterized by ionization temperatures above 10^5 K.
INTERIOR
          The region inside the body which is not visible from outside the body.
PHOTOSPHERE
          The atmospheric layer of the Sun or a star from which continuum radiation, especially optical, is emitted to space.
TRANSITION_REGION
          A very narrow (<100 km) layer between the chromosphere and the corona where the temperature rises abruptly from about 8000 to about 500,000 K.
 
Method Summary
static EnumSun fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumSun valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumSun[] 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

CHROMOSPHERE

public static final EnumSun CHROMOSPHERE
The region of the Sun's (or a star's) atmosphere above the temperature minimum and below the Transition Region. The solar chromosphere is approximately 400 km to 2100 km above the photosphere, and characterized by temperatures from 4500 - 28000 K.


CORONA

public static final EnumSun CORONA
The outermost atmospheric region of the Sun or a star, characterized by ionization temperatures above 10^5 K. The solar corona starts at about 2100 km above the photosphere; there is no generally defined upper limit.


INTERIOR

public static final EnumSun INTERIOR
The region inside the body which is not visible from outside the body.


PHOTOSPHERE

public static final EnumSun PHOTOSPHERE
The atmospheric layer of the Sun or a star from which continuum radiation, especially optical, is emitted to space. For the Sun, the photosphere is about 500 km thick.


TRANSITION_REGION

public static final EnumSun TRANSITION_REGION
A very narrow (<100 km) layer between the chromosphere and the corona where the temperature rises abruptly from about 8000 to about 500,000 K.

Method Detail

values

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

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

valueOf

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