public enum CharacterSetType extends java.lang.Enum<CharacterSetType>
Enum Constant and Description |
---|
DOUBLE_BYTE
Double byte character sets; these do NOT have the shift-in;shift-out operators
|
DOUBLE_BYTE_LINE_DATA
Double byte character sets; these can have the shift-in;shift-out operators
|
SINGLE_BYTE |
Modifier and Type | Method and Description |
---|---|
static CharacterSetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CharacterSetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CharacterSetType DOUBLE_BYTE
public static final CharacterSetType DOUBLE_BYTE_LINE_DATA
public static final CharacterSetType SINGLE_BYTE
public static CharacterSetType[] values()
for (CharacterSetType c : CharacterSetType.values()) System.out.println(c);
public static CharacterSetType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright 1999-2012 The Apache Software Foundation. All Rights Reserved.