faa.tg.aidl
Enum ParameterClasses

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

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

Contains the list of aidl parameter classes See the source ParameterClasses.java

Version:
$Id: ParameterClasses.java,v 1.3 2008/06/03 17:59:58 samf Exp $
Author:
Sam Fullerton, L-3 Titan

Enum Constant Summary
AUTO
           
DEFAULT
           
FIXED
           
FLOATING
           
OBJECT
           
REF
           
 
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 ParameterClasses getParameterClass(java.lang.String name)
          Get parameter class with given name
 java.lang.String toString()
          Returns a string representation of this object
static ParameterClasses valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ParameterClasses[] 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 ParameterClasses AUTO

DEFAULT

public static final ParameterClasses DEFAULT

FIXED

public static final ParameterClasses FIXED

FLOATING

public static final ParameterClasses FLOATING

OBJECT

public static final ParameterClasses OBJECT

REF

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

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

valueOf

public static ParameterClasses 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<ParameterClasses>

getParameterClass

public static ParameterClasses getParameterClass(java.lang.String name)
Get parameter class with given name

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