faa.tg.aidl
Enum TriggerClasses

java.lang.Object
  extended by java.lang.Enum<TriggerClasses>
      extended by faa.tg.aidl.TriggerClasses
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TriggerClasses>

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

Contains the list of aidl trigger classes See the source TriggerClasses.java

Version:
$Id: TriggerClasses.java,v 1.3 2008/06/03 19:32:41 samf Exp $
Author:
Sam Fullerton, L-3 Titan

Enum Constant Summary
AUTO
           
DEFAULT
           
FIXED
           
FLOATING
           
LINKED
           
 
Field Summary
static java.lang.String CVS_VERSION_ID
          The CVS Version ID
private  java.lang.String name
           
(package private) static long serialVersionUID
           
 
Method Summary
static TriggerClasses getTriggerClass(java.lang.String name)
          Get trigger class with given name
 java.lang.String toString()
          Returns a string representation of this object
static TriggerClasses valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TriggerClasses[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AUTO

public static final TriggerClasses AUTO

DEFAULT

public static final TriggerClasses DEFAULT

FIXED

public static final TriggerClasses FIXED

FLOATING

public static final TriggerClasses FLOATING

LINKED

public static final TriggerClasses LINKED
Field Detail

serialVersionUID

static final long serialVersionUID
See Also:
Constant Field Values

CVS_VERSION_ID

public static final java.lang.String CVS_VERSION_ID
The CVS Version ID

See Also:
Constant Field Values

name

private java.lang.String name
Method Detail

values

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

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

valueOf

public static TriggerClasses 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
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Returns a string representation of this object

Overrides:
toString in class java.lang.Enum<TriggerClasses>

getTriggerClass

public static TriggerClasses getTriggerClass(java.lang.String name)
Get trigger class with given name

Parameters:
name - - the name of the class to look for
Returns:
the trigger class with the given name or null if unable to determine