public enum ValidationError extends java.lang.Enum<ValidationError>
| Enum Constant and Description |
|---|
INVALID_CHECKSUM |
MISSING_REQUIRED_FIELD |
PARSE_ERROR |
UNKNOWN_FIELD |
UNKNOWN_MESSAGE_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static ValidationError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValidationError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationError INVALID_CHECKSUM
public static final ValidationError PARSE_ERROR
public static final ValidationError MISSING_REQUIRED_FIELD
public static final ValidationError UNKNOWN_FIELD
public static final ValidationError UNKNOWN_MESSAGE_TYPE
public static ValidationError[] values()
for (ValidationError c : ValidationError.values()) System.out.println(c);
public static ValidationError valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2015-2022 Real Logic Limited. All Rights Reserved.