Enum Class StructuredException.ErrorCode
java.lang.Object
java.lang.Enum<StructuredException.ErrorCode>
net.visma.autopay.http.structured.StructuredException.ErrorCode
- All Implemented Interfaces:
Serializable
,Comparable<StructuredException.ErrorCode>
,Constable
- Enclosing class:
- StructuredException
Error codes to classify Structured Exceptions
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAttempt to parse null or empty inputInvalid Base64 string provided when parsingStructuredBytes
Missing closing quote or colon or parenthesisUnexpected character encounteredExpected Item type is different from actual.Wrong format for numerical values, e.g. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static StructuredException.ErrorCode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
EMPTY_INPUT
Attempt to parse null or empty input -
UNEXPECTED_CHARACTER
Unexpected character encountered -
MISSING_CHARACTER
Missing closing quote or colon or parenthesis -
WRONG_ITEM_CLASS
Expected Item type is different from actual. E.g.StructuredBytes.parse(String)
called with "ok" argument. -
WRONG_NUMBER
Wrong format for numerical values, e.g. too many digits -
INVALID_BYTES
Invalid Base64 string provided when parsingStructuredBytes
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-