public enum FeedItemType extends java.lang.Enum<FeedItemType>
| Enum Constant and Description |
|---|
ANNOUNCE |
COMMENT |
FILES |
IGNORE |
JOIN |
LEAVE |
LIKE |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final FeedItemType TEXT
public static final FeedItemType COMMENT
public static final FeedItemType LIKE
public static final FeedItemType FILES
public static final FeedItemType IGNORE
public static final FeedItemType JOIN
public static final FeedItemType LEAVE
public static final FeedItemType ANNOUNCE
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 null