Package com.docusign.maestro.model
Enum ErrorCodes
- java.lang.Object
-
- java.lang.Enum<ErrorCodes>
-
- com.docusign.maestro.model.ErrorCodes
-
- All Implemented Interfaces:
Serializable,Comparable<ErrorCodes>
public enum ErrorCodes extends Enum<ErrorCodes>
Internal Error Codes
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ErrorCodesfromValue(String value)StringgetValue()StringtoString()static ErrorCodesvalueOf(String name)Returns the enum constant of this type with the specified name.static ErrorCodes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_10001
public static final ErrorCodes _10001
-
_10002
public static final ErrorCodes _10002
-
_10003
public static final ErrorCodes _10003
-
_10004
public static final ErrorCodes _10004
-
_10005
public static final ErrorCodes _10005
-
_10006
public static final ErrorCodes _10006
-
_10007
public static final ErrorCodes _10007
-
_10008
public static final ErrorCodes _10008
-
_10009
public static final ErrorCodes _10009
-
_10101
public static final ErrorCodes _10101
-
_10201
public static final ErrorCodes _10201
-
_10202
public static final ErrorCodes _10202
-
_10301
public static final ErrorCodes _10301
-
_10302
public static final ErrorCodes _10302
-
_10401
public static final ErrorCodes _10401
-
_10801
public static final ErrorCodes _10801
-
_10802
public static final ErrorCodes _10802
-
_10999
public static final ErrorCodes _10999
-
-
Method Detail
-
values
public static ErrorCodes[] 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 (ErrorCodes c : ErrorCodes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ErrorCodes 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ErrorCodes>
-
fromValue
public static ErrorCodes fromValue(String value)
-
-