public enum SplitModeOption extends Enum<SplitModeOption> implements CmdLineOptionsProvider
Modifier and Type | Method and Description |
---|---|
abstract SplitMode |
getOptions() |
static SplitModeOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SplitModeOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SplitModeOption TIME
public static final SplitModeOption COUNT
public static SplitModeOption[] values()
for (SplitModeOption c : SplitModeOption.values()) System.out.println(c);
public static SplitModeOption 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 SplitMode getOptions()
getOptions
in interface CmdLineOptionsProvider