public enum JobTypeEnum extends Enum<JobTypeEnum>
| Enum Constant and Description |
|---|
BIGOBJECTINJEST |
CLASSIC |
V2INGEST |
V2Query |
| Modifier and Type | Method and Description |
|---|---|
static JobTypeEnum |
fromValue(String v) |
static JobTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobTypeEnum BIGOBJECTINJEST
public static final JobTypeEnum CLASSIC
public static final JobTypeEnum V2INGEST
public static final JobTypeEnum V2Query
public static JobTypeEnum[] values()
for (JobTypeEnum c : JobTypeEnum.values()) System.out.println(c);
public static JobTypeEnum 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 static JobTypeEnum fromValue(String v)
Apache Camel