public enum IgnoreItemType extends java.lang.Enum<IgnoreItemType> implements EnumParam
| Enum Constant and Description |
|---|
AUDIO |
PHOTO |
POST_ON_THE_WALL |
PROFILE_PHOTO |
TAG_ON_A_PHOTO |
VIDEO |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static IgnoreItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IgnoreItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="wall") public static final IgnoreItemType POST_ON_THE_WALL
@SerializedName(value="tag") public static final IgnoreItemType TAG_ON_A_PHOTO
@SerializedName(value="profilephoto") public static final IgnoreItemType PROFILE_PHOTO
@SerializedName(value="video") public static final IgnoreItemType VIDEO
@SerializedName(value="photo") public static final IgnoreItemType PHOTO
@SerializedName(value="audio") public static final IgnoreItemType AUDIO
public static IgnoreItemType[] values()
for (IgnoreItemType c : IgnoreItemType.values()) System.out.println(c);
public static IgnoreItemType 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<IgnoreItemType>