public static enum Information.Code extends Enum<Information.Code>
Enum Constant and Description |
---|
ERRORED_PDU |
MESSAGES_LOST |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static Information.Code |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Information.Code[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Information.Code ERRORED_PDU
public static final Information.Code MESSAGES_LOST
public static final Information.Code UNKNOWN
public static Information.Code[] values()
for (Information.Code c : Information.Code.values()) System.out.println(c);
public static Information.Code valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.