public enum PolicyEnum extends Enum<PolicyEnum>
| Modifier and Type | Method and Description |
|---|---|
static PolicyEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PolicyEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolicyEnum ALLOW
public static final PolicyEnum DENY
public static PolicyEnum[] values()
for (PolicyEnum c : PolicyEnum.values()) System.out.println(c);
public static PolicyEnum 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 © 2014–2017 University Health Network. All rights reserved.