| Enum Constant and Description |
|---|
BS |
CR |
CTRL_D |
DEL |
ESC |
ETX |
FS |
GS |
LF |
RS |
STX |
US |
| Modifier and Type | Method and Description |
|---|---|
char |
charValue() |
boolean |
eq(int aValue) |
int |
intValue() |
static boolean |
isPrintable(int aValue) |
static Ascii |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Ascii[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ascii STX
public static final Ascii ETX
public static final Ascii CTRL_D
public static final Ascii BS
public static final Ascii LF
public static final Ascii CR
public static final Ascii ESC
public static final Ascii FS
public static final Ascii GS
public static final Ascii RS
public static final Ascii US
public static final Ascii DEL
public static Ascii[] values()
for (Ascii c : Ascii.values()) System.out.println(c);
public static Ascii 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 nullpublic boolean eq(int aValue)
public int intValue()
public char charValue()
public static boolean isPrintable(int aValue)