public enum MaestroCommand extends Enum<MaestroCommand>
Enum Constant and Description |
---|
MAESTRO_NOTE_ABNORMAL_DISCONNECT |
MAESTRO_NOTE_AGENT_SOURCE |
MAESTRO_NOTE_DRAIN |
MAESTRO_NOTE_FLUSH |
MAESTRO_NOTE_GET |
MAESTRO_NOTE_HALT |
MAESTRO_NOTE_INTERNAL_ERROR |
MAESTRO_NOTE_LOG |
MAESTRO_NOTE_NOTIFY_DRAIN_COMPLETE |
MAESTRO_NOTE_NOTIFY_FAIL
Notifications
|
MAESTRO_NOTE_NOTIFY_SUCCESS |
MAESTRO_NOTE_OK |
MAESTRO_NOTE_PING |
MAESTRO_NOTE_PROTOCOL_ERROR |
MAESTRO_NOTE_SET |
MAESTRO_NOTE_START_AGENT
Agent execution
|
MAESTRO_NOTE_START_INSPECTOR
Inspector execution
|
MAESTRO_NOTE_START_RECEIVER
Receiver execution
|
MAESTRO_NOTE_START_SENDER
Sender execution
|
MAESTRO_NOTE_STATS |
MAESTRO_NOTE_STOP_AGENT |
MAESTRO_NOTE_STOP_INSPECTOR |
MAESTRO_NOTE_STOP_RECEIVER |
MAESTRO_NOTE_STOP_SENDER |
MAESTRO_NOTE_USER_COMMAND_1 |
Modifier and Type | Method and Description |
---|---|
static MaestroCommand |
from(long value) |
long |
getValue() |
static MaestroCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MaestroCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaestroCommand MAESTRO_NOTE_START_RECEIVER
public static final MaestroCommand MAESTRO_NOTE_STOP_RECEIVER
public static final MaestroCommand MAESTRO_NOTE_START_SENDER
public static final MaestroCommand MAESTRO_NOTE_STOP_SENDER
public static final MaestroCommand MAESTRO_NOTE_START_INSPECTOR
public static final MaestroCommand MAESTRO_NOTE_STOP_INSPECTOR
public static final MaestroCommand MAESTRO_NOTE_FLUSH
public static final MaestroCommand MAESTRO_NOTE_SET
public static final MaestroCommand MAESTRO_NOTE_STATS
public static final MaestroCommand MAESTRO_NOTE_HALT
public static final MaestroCommand MAESTRO_NOTE_PING
public static final MaestroCommand MAESTRO_NOTE_OK
public static final MaestroCommand MAESTRO_NOTE_PROTOCOL_ERROR
public static final MaestroCommand MAESTRO_NOTE_INTERNAL_ERROR
public static final MaestroCommand MAESTRO_NOTE_ABNORMAL_DISCONNECT
public static final MaestroCommand MAESTRO_NOTE_NOTIFY_FAIL
public static final MaestroCommand MAESTRO_NOTE_NOTIFY_SUCCESS
public static final MaestroCommand MAESTRO_NOTE_GET
public static final MaestroCommand MAESTRO_NOTE_START_AGENT
public static final MaestroCommand MAESTRO_NOTE_STOP_AGENT
public static final MaestroCommand MAESTRO_NOTE_AGENT_SOURCE
public static final MaestroCommand MAESTRO_NOTE_USER_COMMAND_1
public static final MaestroCommand MAESTRO_NOTE_LOG
public static final MaestroCommand MAESTRO_NOTE_DRAIN
public static final MaestroCommand MAESTRO_NOTE_NOTIFY_DRAIN_COMPLETE
public static MaestroCommand[] values()
for (MaestroCommand c : MaestroCommand.values()) System.out.println(c);
public static MaestroCommand 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 nullpublic long getValue()
public static MaestroCommand from(long value)
This documentation was released into the public domain.