public enum ResultStatus extends Enum<ResultStatus>
| Enum Constant and Description |
|---|
LOGICAL_FAILURE |
NOT_SUPPORTED |
SUCCESS |
TECHNICAL_FAILURE |
UNAUTHORIZED_FAILURE |
| Modifier and Type | Method and Description |
|---|---|
static ResultStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultStatus SUCCESS
public static final ResultStatus TECHNICAL_FAILURE
public static final ResultStatus UNAUTHORIZED_FAILURE
public static final ResultStatus LOGICAL_FAILURE
public static final ResultStatus NOT_SUPPORTED
public static ResultStatus[] values()
for (ResultStatus c : ResultStatus.values()) System.out.println(c);
public static ResultStatus 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 © 2019. All rights reserved.