Enum Command.Note.Type
- java.lang.Object
-
- java.lang.Enum<Command.Note.Type>
-
- rocks.xmpp.extensions.commands.model.Command.Note.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<Command.Note.Type>
- Enclosing class:
- Command.Note
public static enum Command.Note.Type extends Enum<Command.Note.Type>
Represents the note type.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
ERROR
public static final Command.Note.Type ERROR
The note indicates an error. The text should indicate the reason for the error.
-
INFO
public static final Command.Note.Type INFO
The note is informational only. This is not really an exceptional condition.
-
WARN
public static final Command.Note.Type WARN
The note indicates a warning. Possibly due to illogical (yet valid) data.
-
-
Method Detail
-
values
public static Command.Note.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Command.Note.Type c : Command.Note.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Command.Note.Type valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-