| Enum Constant and Description |
|---|
AUDIO |
COMMENT |
COMMUNITY_REVIEW |
GROUP_LIKE |
MARKET |
MARKET_COMMENT |
NOTE |
PHOTO |
PHOTO_COMMENT |
POST |
SITEPAGE |
STORY |
TEXTPOST |
TOPIC_COMMENT |
VIDEO |
VIDEO_COMMENT |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="post") public static final Type POST
@SerializedName(value="comment") public static final Type COMMENT
@SerializedName(value="photo") public static final Type PHOTO
@SerializedName(value="audio") public static final Type AUDIO
@SerializedName(value="video") public static final Type VIDEO
@SerializedName(value="note") public static final Type NOTE
@SerializedName(value="market") public static final Type MARKET
@SerializedName(value="photo_comment") public static final Type PHOTO_COMMENT
@SerializedName(value="video_comment") public static final Type VIDEO_COMMENT
@SerializedName(value="topic_comment") public static final Type TOPIC_COMMENT
@SerializedName(value="market_comment") public static final Type MARKET_COMMENT
@SerializedName(value="sitepage") public static final Type SITEPAGE
@SerializedName(value="textpost") public static final Type TEXTPOST
@SerializedName(value="community_review") public static final Type COMMUNITY_REVIEW
@SerializedName(value="story") public static final Type STORY
@SerializedName(value="group_like") public static final Type GROUP_LIKE
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type 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<Type>