org.apache.mina.transport.serial
Enum SerialAddress.DataBits

java.lang.Object
  extended by java.lang.Enum<SerialAddress.DataBits>
      extended by org.apache.mina.transport.serial.SerialAddress.DataBits
All Implemented Interfaces:
Serializable, Comparable<SerialAddress.DataBits>
Enclosing class:
SerialAddress

public static enum SerialAddress.DataBits
extends Enum<SerialAddress.DataBits>


Enum Constant Summary
DATABITS_5
           
DATABITS_6
           
DATABITS_7
           
DATABITS_8
           
 
Method Summary
static SerialAddress.DataBits valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SerialAddress.DataBits[] 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

DATABITS_5

public static final SerialAddress.DataBits DATABITS_5

DATABITS_6

public static final SerialAddress.DataBits DATABITS_6

DATABITS_7

public static final SerialAddress.DataBits DATABITS_7

DATABITS_8

public static final SerialAddress.DataBits DATABITS_8
Method Detail

values

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

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

valueOf

public static SerialAddress.DataBits 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


Copyright © 2004-2012 Apache MINA Project. All Rights Reserved.