public static enum Twitter.KEntityType extends java.lang.Enum<Twitter.KEntityType>
| Enum Constant and Description |
|---|
extended_entities |
hashtags |
media |
symbols |
urls |
user_mentions |
| Modifier and Type | Method and Description |
|---|---|
static Twitter.KEntityType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Twitter.KEntityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Twitter.KEntityType hashtags
public static final Twitter.KEntityType urls
public static final Twitter.KEntityType user_mentions
public static final Twitter.KEntityType media
public static final Twitter.KEntityType symbols
public static final Twitter.KEntityType extended_entities
public static Twitter.KEntityType[] values()
for (Twitter.KEntityType c : Twitter.KEntityType.values()) System.out.println(c);
public static Twitter.KEntityType 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