Enum PrintLevel
- java.lang.Object
-
- java.lang.Enum<PrintLevel>
-
- com.zentri.zentri_ble_command.PrintLevel
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<PrintLevel>
public enum PrintLevel extends java.lang.Enum<PrintLevel>
Enum Constant Summary
Enum Constant and Description |
---|
ALL
All command and log messages will be printed
|
ASYNC_SYS
Asynchronous log messages will be printed in addition to SYNC_LOG output
|
NONE
No log messages will be printed
|
SYNC_LOG
Synchronous command and log messages will be printed (with command responses)
|
SYNC_SYS
Only synchronous system command messages will be printed (with command responses)
|
Method Summary
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static PrintLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrintLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Enum Constant Detail
-
NONE
public static final PrintLevel NONE
No log messages will be printed
-
SYNC_SYS
public static final PrintLevel SYNC_SYS
Only synchronous system command messages will be printed (with command responses)
-
SYNC_LOG
public static final PrintLevel SYNC_LOG
Synchronous command and log messages will be printed (with command responses)
-
ASYNC_SYS
public static final PrintLevel ASYNC_SYS
Asynchronous log messages will be printed in addition to SYNC_LOG output
-
ALL
public static final PrintLevel ALL
All command and log messages will be printed
Method Detail
-
values
public static PrintLevel[] 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 (PrintLevel c : PrintLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrintLevel 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<PrintLevel>