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