edu.wisc.ssec.mcidasv.servermanager
Enum AddeEntry.EntryType

java.lang.Object
  extended by java.lang.Enum<AddeEntry.EntryType>
      extended by edu.wisc.ssec.mcidasv.servermanager.AddeEntry.EntryType
All Implemented Interfaces:
Serializable, Comparable<AddeEntry.EntryType>
Enclosing interface:
AddeEntry

public static enum AddeEntry.EntryType
extends Enum<AddeEntry.EntryType>

Type of chooser this should appear under.


Enum Constant Summary
GRID
           
IMAGE
          AddeImageChooser
INVALID
           
NAV
           
POINT
          AddePointDataChooser
RADAR
          AddeRadarChooser
TEXT
          AddeFrontChooser
UNKNOWN
           
 
Method Summary
static AddeEntry.EntryType fromStr(String str)
          Attempts to convert a given String value into a valid EntryType.
static String toStr(AddeEntry.EntryType type)
          Attempts to convert a given EntryType into its String representation.
static AddeEntry.EntryType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AddeEntry.EntryType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

IMAGE

public static final AddeEntry.EntryType IMAGE
AddeImageChooser


POINT

public static final AddeEntry.EntryType POINT
AddePointDataChooser


GRID

public static final AddeEntry.EntryType GRID

TEXT

public static final AddeEntry.EntryType TEXT
AddeFrontChooser


NAV

public static final AddeEntry.EntryType NAV

RADAR

public static final AddeEntry.EntryType RADAR
AddeRadarChooser


UNKNOWN

public static final AddeEntry.EntryType UNKNOWN

INVALID

public static final AddeEntry.EntryType INVALID
Method Detail

values

public static AddeEntry.EntryType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (AddeEntry.EntryType c : AddeEntry.EntryType.values())
    System.out.println(c);

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

valueOf

public static AddeEntry.EntryType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

fromStr

public static AddeEntry.EntryType fromStr(String str)
Attempts to convert a given String value into a valid EntryType.

Parameters:
str - String to convert. Should not be null.
Returns:
EntryType of the value specified in str.

toStr

public static String toStr(AddeEntry.EntryType type)
Attempts to convert a given EntryType into its String representation.

Parameters:
type - EntryType constant; should not be null.
Returns:
String representation of type.