static Option<Boolean> |
Option.bool(String longName,
Enum category,
Boolean defval,
String description) |
Create a new Boolean option with the given configuration.
|
static Option<Boolean> |
Option.bool(String longName,
Enum category,
String description) |
Create a new Boolean option with the given configuration.
|
static Option<Boolean> |
Option.bool(String prefix,
String name,
Enum category,
Boolean defval,
String description) |
Create a new Boolean option with the given configuration.
|
static Option<Boolean> |
Option.bool(String prefix,
String name,
Enum category,
String description) |
Create a new Boolean option with the given configuration.
|
static <T extends Enum<T>> Option<T> |
Option.enumeration(String longName,
Enum category,
Class<T> enumClass,
String description) |
Create a new Enumeration-based option with the given configuration.
|
static <T extends Enum<T>> Option<T> |
Option.enumeration(String longName,
Enum category,
T defval,
String description) |
Create a new Enumeration-based option with the given configuration.
|
static <T extends Enum<T>> Option<T> |
Option.enumeration(String prefix,
String name,
Enum category,
Class<T> enumClass,
String description) |
Create a new Enumeration-based option with the given configuration.
|
static <T extends Enum<T>> Option<T> |
Option.enumeration(String prefix,
String name,
Enum category,
T defval,
String description) |
Create a new Enumeration-based option with the given configuration.
|
static Option<Integer> |
Option.integer(String longName,
Enum category,
Integer[] options,
Integer defval,
String description) |
Create a new Integer option with the given configuration.
|
static Option<Integer> |
Option.integer(String longName,
Enum category,
Integer[] options,
String description) |
Create a new Integer option with the given configuration.
|
static Option<Integer> |
Option.integer(String longName,
Enum category,
Integer defval,
String description) |
Create a new Integer option with the given configuration.
|
static Option<Integer> |
Option.integer(String longName,
Enum category,
String description) |
Create a new Integer option with the given configuration.
|
static Option<Integer> |
Option.integer(String prefix,
String name,
Enum category,
Integer[] options,
Integer defval,
String description) |
Create a new Integer option with the given configuration.
|
static Option<Integer> |
Option.integer(String prefix,
String name,
Enum category,
Integer[] options,
String description) |
Create a new Integer option with the given configuration.
|
static Option<Integer> |
Option.integer(String prefix,
String name,
Enum category,
Integer defval,
String description) |
Create a new Integer option with the given configuration.
|
static Option<Integer> |
Option.integer(String prefix,
String name,
Enum category,
String description) |
Create a new Integer option with the given configuration.
|
static Option<String> |
Option.string(String longName,
Enum category,
String description) |
Create a new String option with the given configuration.
|
static Option<String> |
Option.string(String longName,
Enum category,
String[] options,
String description) |
Create a new String option with the given configuration.
|
static Option<String> |
Option.string(String longName,
Enum category,
String[] options,
String defval,
String description) |
Create a new String option with the given configuration.
|
static Option<String> |
Option.string(String longName,
Enum category,
String defval,
String description) |
Create a new String option with the given configuration.
|
static Option<String> |
Option.string(String prefix,
String name,
Enum category,
String description) |
Create a new String option with the given configuration.
|
static Option<String> |
Option.string(String prefix,
String name,
Enum category,
String[] options,
String description) |
Create a new String option with the given configuration.
|
static Option<String> |
Option.string(String prefix,
String name,
Enum category,
String[] options,
String defval,
String description) |
Create a new String option with the given configuration.
|
static Option<String> |
Option.string(String prefix,
String name,
Enum category,
String defval,
String description) |
Create a new String option with the given configuration.
|