Package com.acumenvelocity.ath.model
Enum TrainingJobResponse.StatusEnum
- java.lang.Object
-
- java.lang.Enum<TrainingJobResponse.StatusEnum>
-
- com.acumenvelocity.ath.model.TrainingJobResponse.StatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TrainingJobResponse.StatusEnum>
- Enclosing class:
- TrainingJobResponse
public static enum TrainingJobResponse.StatusEnum extends Enum<TrainingJobResponse.StatusEnum>
Initial status of the training job.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SCANNING_BUCKETS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TrainingJobResponse.StatusEnumfromValue(String text)StringtoString()static TrainingJobResponse.StatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TrainingJobResponse.StatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCANNING_BUCKETS
public static final TrainingJobResponse.StatusEnum SCANNING_BUCKETS
-
-
Method Detail
-
values
public static TrainingJobResponse.StatusEnum[] 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 (TrainingJobResponse.StatusEnum c : TrainingJobResponse.StatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TrainingJobResponse.StatusEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<TrainingJobResponse.StatusEnum>
-
fromValue
public static TrainingJobResponse.StatusEnum fromValue(String text)
-
-