public static enum Command.Note.Type extends Enum<Command.Note.Type>
| Enum Constant and Description |
|---|
ERROR
The note indicates an error.
|
INFO
The note is informational only.
|
WARN
The note indicates a warning.
|
| Modifier and Type | Method and Description |
|---|---|
static Command.Note.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Command.Note.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Command.Note.Type ERROR
public static final Command.Note.Type INFO
public static final Command.Note.Type WARN
public static Command.Note.Type[] values()
for (Command.Note.Type c : Command.Note.Type.values()) System.out.println(c);
public static Command.Note.Type 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 © 2014–2017 XMPP.rocks. All rights reserved.