public enum TwitterTokenModeOption extends Enum<TwitterTokenModeOption> implements CmdLineOptionsProvider
| Enum Constant and Description | 
|---|
| DFIDFCalculates DF-IDF for each term as described by: "Event Detection in Twitter" by J. | 
| JUST_OUTPUTSkip the actual processing, assume the input contains the data needed by the output | 
| MATCH_TERMIn the JSONPath requested locate tweets with terms which contain any of the tokens requested. | 
| PAIRMICalculates DF-IDF for each term as described by: "Event Detection in Twitter" by J. | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract TwitterTokenMode | getOptions() | 
| static TwitterTokenModeOption | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static TwitterTokenModeOption[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TwitterTokenModeOption DFIDF
public static final TwitterTokenModeOption PAIRMI
public static final TwitterTokenModeOption MATCH_TERM
public static final TwitterTokenModeOption JUST_OUTPUT
public static TwitterTokenModeOption[] values()
for (TwitterTokenModeOption c : TwitterTokenModeOption.values()) System.out.println(c);
public static TwitterTokenModeOption 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 abstract TwitterTokenMode getOptions()
getOptions in interface CmdLineOptionsProvider