public enum TwitterTokenOutputModeOption extends Enum<TwitterTokenOutputModeOption> implements CmdLineOptionsProvider
Enum Constant and Description |
---|
CORRELATION |
CSV
outputs a CSV file
|
JACARD_INDEX
outputs the jacard index at each time step, a measure for how similar the sets of words are between two timesteps
|
NONE
don't do anything
|
SPECIFIC_WORD
outputs a SPECIFIC_WORDfile
|
WORD_STATS
Output some statistics about the words
|
Modifier and Type | Method and Description |
---|---|
abstract TwitterTokenOutputMode |
getOptions() |
static TwitterTokenOutputModeOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TwitterTokenOutputModeOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TwitterTokenOutputModeOption CSV
public static final TwitterTokenOutputModeOption SPECIFIC_WORD
public static final TwitterTokenOutputModeOption JACARD_INDEX
public static final TwitterTokenOutputModeOption CORRELATION
public static final TwitterTokenOutputModeOption WORD_STATS
public static final TwitterTokenOutputModeOption NONE
public static TwitterTokenOutputModeOption[] values()
for (TwitterTokenOutputModeOption c : TwitterTokenOutputModeOption.values()) System.out.println(c);
public static TwitterTokenOutputModeOption 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 TwitterTokenOutputMode getOptions()
getOptions
in interface CmdLineOptionsProvider