public enum JobStoreType extends java.lang.Enum<JobStoreType>
JobStore.| Enum Constant and Description |
|---|
JDBC
Store jobs in the database.
|
MEMORY
Store jobs in memory.
|
| Modifier and Type | Method and Description |
|---|---|
static JobStoreType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JobStoreType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobStoreType MEMORY
public static final JobStoreType JDBC
public static JobStoreType[] values()
for (JobStoreType c : JobStoreType.values()) System.out.println(c);
public static JobStoreType 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