public static enum Command.Note.Type extends java.lang.Enum<Command.Note.Type>
Represents the 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(java.lang.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(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 nullCopyright © 2014–2019 XMPP.rocks. All rights reserved.