public enum CommandInitiator extends java.lang.Enum<CommandInitiator>
Enum Constant and Description |
---|
BatchOperation
Command initiated by batch operation
|
REST
Command initiated by REST call
|
Scheduler
Command initiated by scheduler
|
Script
Command initiated by script
|
Modifier and Type | Method and Description |
---|---|
static CommandInitiator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommandInitiator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandInitiator REST
public static final CommandInitiator BatchOperation
public static final CommandInitiator Script
public static final CommandInitiator Scheduler
public static CommandInitiator[] values()
for (CommandInitiator c : CommandInitiator.values()) System.out.println(c);
public static CommandInitiator 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 null