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