org.irig106.chapter9.groups
Enum R.ChannelDataType

java.lang.Object
  extended by java.lang.Enum<R.ChannelDataType>
      extended by org.irig106.chapter9.groups.R.ChannelDataType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<R.ChannelDataType>
Enclosing class:
R

public static enum R.ChannelDataType
extends java.lang.Enum<R.ChannelDataType>

Enumeration for Channel Data Type


Enum Constant Summary
ANAIN
           
DISIN
           
IMGIN
           
IN1553
           
IN429
           
MSGIN
           
PCMIN
           
TIMEIN
           
UARTIN
           
VIDIN
           
 
Method Summary
static R.ChannelDataType get(java.lang.String value)
           
static R.ChannelDataType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static R.ChannelDataType[] 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

PCMIN

public static final R.ChannelDataType PCMIN

ANAIN

public static final R.ChannelDataType ANAIN

DISIN

public static final R.ChannelDataType DISIN

TIMEIN

public static final R.ChannelDataType TIMEIN

VIDIN

public static final R.ChannelDataType VIDIN

UARTIN

public static final R.ChannelDataType UARTIN

IN1553

public static final R.ChannelDataType IN1553

IN429

public static final R.ChannelDataType IN429

MSGIN

public static final R.ChannelDataType MSGIN

IMGIN

public static final R.ChannelDataType IMGIN
Method Detail

values

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

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

valueOf

public static R.ChannelDataType 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

get

public static R.ChannelDataType get(java.lang.String value)
                             throws java.lang.Exception
Throws:
java.lang.Exception