public enum UnprocessReason extends Enum<UnprocessReason>
Enum Constant and Description |
---|
DUPLICATE |
NON_TRANSIENT_ERROR |
NOT_AVAILABLE |
NOT_PARSED |
ORIGIN_NOT_FOUND |
Modifier and Type | Method and Description |
---|---|
static UnprocessReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnprocessReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnprocessReason NOT_PARSED
public static final UnprocessReason DUPLICATE
public static final UnprocessReason ORIGIN_NOT_FOUND
public static final UnprocessReason NOT_AVAILABLE
public static final UnprocessReason NON_TRANSIENT_ERROR
public static UnprocessReason[] values()
for (UnprocessReason c : UnprocessReason.values()) System.out.println(c);
public static UnprocessReason valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024 Devexperts. All rights reserved.