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