|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Symbols>
adams.parser.twitterfilter.Symbols
public enum Symbols
Enumeration for the symbols that can be used in the parser.
| Enum Constant Summary | |
|---|---|
COUNTRY
the country (only status). |
|
COUNTRY_CODE
the country code (only status). |
|
LANGUAGE_CODE
the language (only tweet). |
|
PLACE
the place (only status). |
|
SOURCE
the source. |
|
TEXT
the text. |
|
USER
the user. |
|
| Method Summary | |
|---|---|
static Symbols |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Symbols[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Symbols LANGUAGE_CODE
public static final Symbols COUNTRY
public static final Symbols COUNTRY_CODE
public static final Symbols PLACE
public static final Symbols TEXT
public static final Symbols SOURCE
public static final Symbols USER
| Method Detail |
|---|
public static Symbols[] values()
for (Symbols c : Symbols.values()) System.out.println(c);
public static Symbols valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||