public enum CommandFlag extends Enum<CommandFlag>
| Enum Constant and Description |
|---|
E
Error flag
|
P
Proxiable flag
|
R
Request flag
|
T
Re-transmitted flag
|
| Modifier and Type | Method and Description |
|---|---|
static CommandFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommandFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandFlag R
public static final CommandFlag P
public static final CommandFlag E
public static final CommandFlag T
public static CommandFlag[] values()
for (CommandFlag c : CommandFlag.values()) System.out.println(c);
public static CommandFlag 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 © 2016. All Rights Reserved.