public enum CustomizedPageStatus extends java.lang.Enum<CustomizedPageStatus>
| Enum Constant and Description |
|---|
CUSTOMIZED |
NONE |
UNCUSTOMIZED |
| Modifier and Type | Method and Description |
|---|---|
static CustomizedPageStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomizedPageStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomizedPageStatus CUSTOMIZED
public static final CustomizedPageStatus NONE
public static final CustomizedPageStatus UNCUSTOMIZED
public static CustomizedPageStatus 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 static CustomizedPageStatus[] values()
for (CustomizedPageStatus c : CustomizedPageStatus.values()) System.out.println(c);