public enum RatingAppsType extends java.lang.Enum<RatingAppsType>
| Enum Constant and Description |
|---|
AGES_ABOVE12
ages Above12
|
AGES_ABOVE17
ages Above17
|
AGES_ABOVE4
ages Above4
|
AGES_ABOVE9
ages Above9
|
ALL_ALLOWED
all Allowed
|
ALL_BLOCKED
all Blocked
|
UNEXPECTED_VALUE
For RatingAppsType values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static RatingAppsType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RatingAppsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RatingAppsType ALL_ALLOWED
public static final RatingAppsType ALL_BLOCKED
public static final RatingAppsType AGES_ABOVE4
public static final RatingAppsType AGES_ABOVE9
public static final RatingAppsType AGES_ABOVE12
public static final RatingAppsType AGES_ABOVE17
public static final RatingAppsType UNEXPECTED_VALUE
public static RatingAppsType[] values()
for (RatingAppsType c : RatingAppsType.values()) System.out.println(c);
public static RatingAppsType 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