public enum PolicyType extends java.lang.Enum<PolicyType>
| Enum Constant and Description |
|---|
COMPOSITE_APPLICATION |
MAIL |
THEME |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getXmlAccessName()
Name/value used inside XML access
|
static PolicyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PolicyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolicyType COMPOSITE_APPLICATION
public static final PolicyType MAIL
public static final PolicyType THEME
public static PolicyType[] values()
for (PolicyType c : PolicyType.values()) System.out.println(c);
public static PolicyType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getXmlAccessName()