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