sidnet.stack.std.mac.ieee802_15_4
Enum CHAR
java.lang.Object
java.lang.Enum<CHAR>
sidnet.stack.std.mac.ieee802_15_4.CHAR
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<CHAR>
public enum CHAR
- extends java.lang.Enum<CHAR>
Method Summary |
static CHAR |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CHAR[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
a
public static final CHAR a
b
public static final CHAR b
c
public static final CHAR c
d
public static final CHAR d
e
public static final CHAR e
f
public static final CHAR f
g
public static final CHAR g
h
public static final CHAR h
i
public static final CHAR i
j
public static final CHAR j
k
public static final CHAR k
l
public static final CHAR l
m
public static final CHAR m
n
public static final CHAR n
o
public static final CHAR o
p
public static final CHAR p
r
public static final CHAR r
s
public static final CHAR s
t
public static final CHAR t
u
public static final CHAR u
v
public static final CHAR v
x
public static final CHAR x
z
public static final CHAR z
A
public static final CHAR A
B
public static final CHAR B
C
public static final CHAR C
D
public static final CHAR D
E
public static final CHAR E
F
public static final CHAR F
G
public static final CHAR G
H
public static final CHAR H
I
public static final CHAR I
J
public static final CHAR J
K
public static final CHAR K
L
public static final CHAR L
M
public static final CHAR M
N
public static final CHAR N
O
public static final CHAR O
P
public static final CHAR P
R
public static final CHAR R
S
public static final CHAR S
T
public static final CHAR T
U
public static final CHAR U
V
public static final CHAR V
X
public static final CHAR X
Z
public static final CHAR Z
values
public static final CHAR[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(CHAR c : CHAR.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static CHAR 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