Enum CommandMode
- java.lang.Object
-
- java.lang.Enum<CommandMode>
-
- com.zentri.zentri_ble_command.CommandMode
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<CommandMode>
public enum CommandMode extends java.lang.Enum<CommandMode>
Enum Constant Summary
Enum Constant and Description |
---|
HUMAN
Human readable response
|
MACHINE
Response header for simpler parsing by applications
|
Method Summary
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static CommandMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommandMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Enum Constant Detail
-
HUMAN
public static final CommandMode HUMAN
Human readable response
-
MACHINE
public static final CommandMode MACHINE
Response header for simpler parsing by applications
Method Detail
-
values
public static CommandMode[] 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 (CommandMode c : CommandMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommandMode valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<CommandMode>