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