public enum GerritRuntime extends java.lang.Enum<GerritRuntime>
Enum Constant and Description |
---|
BATCH
Gerrit is running from the command line, in batch mode (reindex, ...).
|
DAEMON
Gerrit is running as a server, with all its features.
|
Modifier and Type | Method and Description |
---|---|
static GerritRuntime |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GerritRuntime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GerritRuntime DAEMON
public static final GerritRuntime BATCH
public static GerritRuntime[] values()
for (GerritRuntime c : GerritRuntime.values()) System.out.println(c);
public static GerritRuntime 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