T
- enum type providing option values.public abstract class ArgHandlerEnum<T extends Enum<T>> extends ArgHandler
Constructor and Description |
---|
ArgHandlerEnum(Class<T> optionsEnumClass)
Constructor, default value must be handled by the user code.
|
ArgHandlerEnum(Class<T> optionsEnumClass,
T defaultValue,
boolean allowAbbreviation)
Constructor, allows to specify the default value for the option and whether to accept or
prefixes as abbreviations.
|
Modifier and Type | Method and Description |
---|---|
String[] |
getDefaultArgs() |
protected String |
getPurposeString(String prefix) |
String[] |
getTagArgs()
A list of words representing the arguments in help text.
|
int |
handle(String[] args,
int startIndex)
Attempts to process one flag or "extra" command-line argument (that appears
without a flag).
|
abstract void |
setValue(T value)
Override to handle the setting of an enum value.
|
getHelpTag, getPurpose, getTag, getTags, isExperimental, isRequired, isUndocumented
public ArgHandlerEnum(Class<T> optionsEnumClass)
public ArgHandlerEnum(Class<T> optionsEnumClass, @Nullable T defaultValue, boolean allowAbbreviation)
When defaultValue
is null, handling of the default for the option is left to be
handled by the user code.
public String[] getDefaultArgs()
getDefaultArgs
in class ArgHandler
public String[] getTagArgs()
ArgHandler
getTagArgs
in class ArgHandler
public final int handle(String[] args, int startIndex)
ArgHandler
handle
in class ArgHandler
args
- the arguments passed in to main()startIndex
- an index into args indicating the first argument to use.
If this is a handler for a flag argument. Otherwise it's the index of the
"extra" argument.public abstract void setValue(T value)
Copyright © 2018. All rights reserved.