public enum TwitterOutputModeOption extends Enum<TwitterOutputModeOption> implements CmdLineOptionsProvider
Enum Constant and Description |
---|
ANALYSIS
just the analysis, no tweet
|
APPEND
Appends the analysis to tweets
|
CONDENSED
analysis and JPATH specified optional extras
|
Modifier and Type | Method and Description |
---|---|
abstract TwitterOutputMode |
getOptions() |
static TwitterOutputModeOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TwitterOutputModeOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TwitterOutputModeOption APPEND
public static final TwitterOutputModeOption CONDENSED
public static final TwitterOutputModeOption ANALYSIS
public static TwitterOutputModeOption[] values()
for (TwitterOutputModeOption c : TwitterOutputModeOption.values()) System.out.println(c);
public static TwitterOutputModeOption 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 TwitterOutputMode getOptions()
getOptions
in interface CmdLineOptionsProvider