public enum NewsfeedItemType extends java.lang.Enum<NewsfeedItemType> implements EnumParam
| Enum Constant and Description |
|---|
AUDIO |
AUDIO_PLAYLIST |
CLIP |
DIGEST |
FRIEND |
NOTE |
PHOTO |
PHOTO_TAG |
POST |
STORIES |
TOPIC |
VIDEO |
WALL_PHOTO |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static NewsfeedItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NewsfeedItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="post") public static final NewsfeedItemType POST
@SerializedName(value="photo") public static final NewsfeedItemType PHOTO
@SerializedName(value="photo_tag") public static final NewsfeedItemType PHOTO_TAG
@SerializedName(value="wall_photo") public static final NewsfeedItemType WALL_PHOTO
@SerializedName(value="friend") public static final NewsfeedItemType FRIEND
@SerializedName(value="audio") public static final NewsfeedItemType AUDIO
@SerializedName(value="video") public static final NewsfeedItemType VIDEO
@SerializedName(value="topic") public static final NewsfeedItemType TOPIC
@SerializedName(value="digest") public static final NewsfeedItemType DIGEST
@SerializedName(value="stories") public static final NewsfeedItemType STORIES
@SerializedName(value="note") public static final NewsfeedItemType NOTE
@SerializedName(value="audio_playlist") public static final NewsfeedItemType AUDIO_PLAYLIST
@SerializedName(value="clip") public static final NewsfeedItemType CLIP
public static NewsfeedItemType[] values()
for (NewsfeedItemType c : NewsfeedItemType.values()) System.out.println(c);
public static NewsfeedItemType 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<NewsfeedItemType>