Package com.carfey.ops.api.enums
Enum Category
- java.lang.Object
-
- java.lang.Enum<Category>
-
- com.carfey.ops.api.enums.Category
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DASHBOARDDISPATCHJOBJOB_CHAINJOB_CONFIGJOB_QUEUERJOB_RECOVERYJOB_RUNJOB_SPAWNERLICENCEQUEUESYSTEM_PARAMETER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CategoryvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Category[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYSTEM_PARAMETER
public static final Category SYSTEM_PARAMETER
-
QUEUE
public static final Category QUEUE
-
JOB
public static final Category JOB
-
JOB_CHAIN
public static final Category JOB_CHAIN
-
JOB_CONFIG
public static final Category JOB_CONFIG
-
JOB_RUN
public static final Category JOB_RUN
-
JOB_QUEUER
public static final Category JOB_QUEUER
-
JOB_RECOVERY
public static final Category JOB_RECOVERY
-
JOB_SPAWNER
public static final Category JOB_SPAWNER
-
LICENCE
public static final Category LICENCE
-
DISPATCH
public static final Category DISPATCH
-
DASHBOARD
public static final Category DASHBOARD
-
-
Method Detail
-
values
public static Category[] 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 (Category c : Category.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Category 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
-
-