public enum FlurrySyndicationEventName extends Enum<FlurrySyndicationEventName>
enum FlurrySyndicationEventName {
REBLOG,
FAST_REBLOG,
SOURCE_LINK,
LIKE
}
| Enum Constant and Description |
|---|
FAST_REBLOG |
LIKE |
REBLOG |
SOURCE_LINK |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static FlurrySyndicationEventName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlurrySyndicationEventName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlurrySyndicationEventName REBLOG
public static final FlurrySyndicationEventName FAST_REBLOG
public static final FlurrySyndicationEventName SOURCE_LINK
public static final FlurrySyndicationEventName LIKE
public static FlurrySyndicationEventName[] values()
for (FlurrySyndicationEventName c : FlurrySyndicationEventName.values()) System.out.println(c);
public static FlurrySyndicationEventName 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 nullpublic String toString()
toString in class Enum<FlurrySyndicationEventName>