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