| Enum Constant and Description |
|---|
ADMIN |
ADVERTISER |
EDITOR |
EVENTS |
GROUPS |
HAS_ADDRESSES |
MODER |
PUBLICS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static Filter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Filter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="admin") public static final Filter ADMIN
@SerializedName(value="editor") public static final Filter EDITOR
@SerializedName(value="moder") public static final Filter MODER
@SerializedName(value="advertiser") public static final Filter ADVERTISER
@SerializedName(value="groups") public static final Filter GROUPS
@SerializedName(value="publics") public static final Filter PUBLICS
@SerializedName(value="events") public static final Filter EVENTS
@SerializedName(value="has_addresses") public static final Filter HAS_ADDRESSES
public static Filter[] values()
for (Filter c : Filter.values()) System.out.println(c);
public static Filter 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 toString()
toString in class java.lang.Enum<Filter>