public enum TimelineType extends Enum<TimelineType>
Enum Constant and Description |
---|
HOME |
MENTIONS |
PUBLIC |
RETWEETSOFME |
UNKNOWN |
USER |
Modifier and Type | Method and Description |
---|---|
static TimelineType |
fromString(String uri) |
static TimelineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimelineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimelineType PUBLIC
public static final TimelineType HOME
public static final TimelineType USER
public static final TimelineType MENTIONS
public static final TimelineType RETWEETSOFME
public static final TimelineType UNKNOWN
public static TimelineType[] values()
for (TimelineType c : TimelineType.values()) System.out.println(c);
public static TimelineType 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 static TimelineType fromString(String uri)
Apache Camel