public enum FeedItemType extends java.lang.Enum<FeedItemType> implements EnumParam
| Enum Constant and Description |
|---|
APP_GROUPED_STORIES |
DISCOVER |
LIVE_ACTIVE |
LIVE_FINISHED |
PROMO_STORIES |
STORIES |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static FeedItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FeedItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="promo_stories") public static final FeedItemType PROMO_STORIES
@SerializedName(value="stories") public static final FeedItemType STORIES
@SerializedName(value="live_active") public static final FeedItemType LIVE_ACTIVE
@SerializedName(value="live_finished") public static final FeedItemType LIVE_FINISHED
@SerializedName(value="app_grouped_stories") public static final FeedItemType APP_GROUPED_STORIES
@SerializedName(value="discover") public static final FeedItemType DISCOVER
public static FeedItemType[] values()
for (FeedItemType c : FeedItemType.values()) System.out.println(c);
public static FeedItemType 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<FeedItemType>