public enum TwitterEventType extends Enum<TwitterEventType>
Modifier and Type | Method and Description |
---|---|
org.apache.camel.Exchange |
createExchange(TwitterEndpoint endpoint) |
<T> org.apache.camel.Exchange |
createExchange(TwitterEndpoint endpoint,
T body) |
<T> List<org.apache.camel.Exchange> |
createExchangeList(TwitterEndpoint endpoint,
List<T> bodyList) |
static TwitterEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TwitterEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TwitterEventType STATUS
public static final TwitterEventType DIRECT_MESSAGE
public static final TwitterEventType FAVORITE
public static final TwitterEventType UNFAVORITE
public static final TwitterEventType FOLLOW
public static final TwitterEventType UNFOLLOW
public static final TwitterEventType USERLIST_MEMBER_ADDITION
public static final TwitterEventType USERLIST_MEMBER_DELETION
public static final TwitterEventType USERLIST_SUBSCRIPTION
public static final TwitterEventType USERLIST_UNSUBSCRIPTION
public static final TwitterEventType USERLIST_CREATION
public static final TwitterEventType USERLIST_UPDATE
public static final TwitterEventType USERLIST_DELETETION
public static final TwitterEventType USER_PROFILE_UPDATE
public static final TwitterEventType USER_SUSPENSION
public static final TwitterEventType USER_DELETION
public static final TwitterEventType BLOCK
public static final TwitterEventType UNBLOCK
public static final TwitterEventType RETWEETED_RETWEET
public static final TwitterEventType FAVORITED_RETWEET
public static final TwitterEventType QUOTED_TWEET
public static TwitterEventType[] values()
for (TwitterEventType c : TwitterEventType.values()) System.out.println(c);
public static TwitterEventType 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 org.apache.camel.Exchange createExchange(TwitterEndpoint endpoint)
public <T> org.apache.camel.Exchange createExchange(TwitterEndpoint endpoint, T body)
public <T> List<org.apache.camel.Exchange> createExchangeList(TwitterEndpoint endpoint, List<T> bodyList)
Apache Camel