Package com.acumenvelocity.ath.model
Enum TrainingFailedResponse.ErrorTypeEnum
- java.lang.Object
-
- java.lang.Enum<TrainingFailedResponse.ErrorTypeEnum>
-
- com.acumenvelocity.ath.model.TrainingFailedResponse.ErrorTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TrainingFailedResponse.ErrorTypeEnum>
- Enclosing class:
- TrainingFailedResponse
public static enum TrainingFailedResponse.ErrorTypeEnum extends Enum<TrainingFailedResponse.ErrorTypeEnum>
Machine-readable error type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXCESSIVE_DATAINSUFFICIENT_DATAINVALID_FILESPERMISSION_DENIEDTIMEOUTTRAINING_ERRORUNKNOWN_ERROR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TrainingFailedResponse.ErrorTypeEnumfromValue(String text)StringtoString()static TrainingFailedResponse.ErrorTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TrainingFailedResponse.ErrorTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSUFFICIENT_DATA
public static final TrainingFailedResponse.ErrorTypeEnum INSUFFICIENT_DATA
-
EXCESSIVE_DATA
public static final TrainingFailedResponse.ErrorTypeEnum EXCESSIVE_DATA
-
INVALID_FILES
public static final TrainingFailedResponse.ErrorTypeEnum INVALID_FILES
-
PERMISSION_DENIED
public static final TrainingFailedResponse.ErrorTypeEnum PERMISSION_DENIED
-
TRAINING_ERROR
public static final TrainingFailedResponse.ErrorTypeEnum TRAINING_ERROR
-
TIMEOUT
public static final TrainingFailedResponse.ErrorTypeEnum TIMEOUT
-
UNKNOWN_ERROR
public static final TrainingFailedResponse.ErrorTypeEnum UNKNOWN_ERROR
-
-
Method Detail
-
values
public static TrainingFailedResponse.ErrorTypeEnum[] 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 (TrainingFailedResponse.ErrorTypeEnum c : TrainingFailedResponse.ErrorTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TrainingFailedResponse.ErrorTypeEnum 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<TrainingFailedResponse.ErrorTypeEnum>
-
fromValue
public static TrainingFailedResponse.ErrorTypeEnum fromValue(String text)
-
-