public enum FeedType extends Enum<FeedType>
| Enum Constant and Description |
|---|
ACCOUNTING
Special case used when accounting
|
CONNECTED |
DISABLED
Special case used when a Feed is removed
|
JOIN |
PUBLISH |
SHARE |
TWEET |
| Modifier and Type | Method and Description |
|---|---|
static FeedType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeedType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeedType JOIN
public static final FeedType SHARE
public static final FeedType PUBLISH
public static final FeedType TWEET
public static final FeedType CONNECTED
public static final FeedType ACCOUNTING
public static final FeedType DISABLED
public static FeedType[] values()
for (FeedType c : FeedType.values()) System.out.println(c);
public static FeedType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All Rights Reserved.