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