Index
All Classes and Interfaces|All Packages|Serialized Form
C
- coneforest.clianthus - module coneforest.clianthus
-
GNU-compatible command-line options processor.
- coneforest.clianthus.option - package coneforest.clianthus.option
-
Options.
- coneforest.clianthus.processor - package coneforest.clianthus.processor
G
- getFreeArgs() - Method in class coneforest.clianthus.processor.Processor
- getValue() - Method in class coneforest.clianthus.option.Option
-
Returns an option value.
- getValue() - Method in class coneforest.clianthus.option.OptionCollector
-
Returns a list containing collected objects.
- getValue() - Method in class coneforest.clianthus.option.OptionCounter
-
Returns current option value.
- getValue() - Method in class coneforest.clianthus.option.OptionFlag
-
Returns current option value.
- getValue() - Method in class coneforest.clianthus.option.OptionHolder
-
Returns containing object.
- getValue() - Method in class coneforest.clianthus.option.OptionToggle
-
Returns the current option value.
- getValue(String) - Method in class coneforest.clianthus.processor.Processor
H
- handle() - Method in class coneforest.clianthus.option.OptionCounter
-
Increments option value by one.
- handle() - Method in class coneforest.clianthus.option.OptionFlag
-
Sets option value to true.
- handle() - Method in class coneforest.clianthus.option.OptionToggle
-
Toggles option value.
- handle() - Method in class coneforest.clianthus.option.OptionWithoutArg
-
Called when option is processed.
- handle(String) - Method in class coneforest.clianthus.option.OptionCollector
-
Add parsed argument to list.
- handle(String) - Method in class coneforest.clianthus.option.OptionHolder
-
Replaces current option value with parsed argument.
- handle(String) - Method in class coneforest.clianthus.option.OptionWithArg
-
Option argument is passed to this method.
- hasName(String) - Method in class coneforest.clianthus.option.Option
-
Returns true if given name is found among option names, and false otherwise.
O
- Option - Class in coneforest.clianthus.option
-
An abstract option.
- Option(String) - Constructor for class coneforest.clianthus.option.Option
-
Constructs an option object with given names.
- OptionBoolean - Class in coneforest.clianthus.option
-
An option holding a
Boolean
value. - OptionBoolean(String) - Constructor for class coneforest.clianthus.option.OptionBoolean
- OptionCollector<T> - Class in coneforest.clianthus.option
-
An abstract option holding a list of objects.
- OptionCollector(String) - Constructor for class coneforest.clianthus.option.OptionCollector
-
Creates new option with given names.
- OptionCollectorDouble - Class in coneforest.clianthus.option
-
An option holding a list of
Double
values. - OptionCollectorDouble(String) - Constructor for class coneforest.clianthus.option.OptionCollectorDouble
-
Creates new option with given names.
- OptionCollectorFloat - Class in coneforest.clianthus.option
-
An option holding a list of
Float
values. - OptionCollectorFloat(String) - Constructor for class coneforest.clianthus.option.OptionCollectorFloat
-
Creates new option with given names.
- OptionCollectorInteger - Class in coneforest.clianthus.option
-
An option holding a list of
Integer
values. - OptionCollectorInteger(String) - Constructor for class coneforest.clianthus.option.OptionCollectorInteger
-
Creates new option with given names.
- OptionCollectorLong - Class in coneforest.clianthus.option
-
An option holding a list of
Long
values. - OptionCollectorLong(String) - Constructor for class coneforest.clianthus.option.OptionCollectorLong
-
Creates new option with given names.
- OptionCollectorString - Class in coneforest.clianthus.option
-
An option holding a list of
String
values. - OptionCollectorString(String) - Constructor for class coneforest.clianthus.option.OptionCollectorString
-
Creates new option with given names.
- OptionCounter - Class in coneforest.clianthus.option
-
A counter option.
- OptionCounter(String) - Constructor for class coneforest.clianthus.option.OptionCounter
-
Creates new option with given names.
- OptionDouble - Class in coneforest.clianthus.option
-
An option holding a
Double
value. - OptionDouble(String) - Constructor for class coneforest.clianthus.option.OptionDouble
-
Creates new option with given names.
- OptionFlag - Class in coneforest.clianthus.option
-
A flag option.
- OptionFlag(String) - Constructor for class coneforest.clianthus.option.OptionFlag
-
Creates new option with given names.
- OptionFloat - Class in coneforest.clianthus.option
-
An option holding a
Float
value. - OptionFloat(String) - Constructor for class coneforest.clianthus.option.OptionFloat
-
Creates new option with given names.
- OptionHolder<T> - Class in coneforest.clianthus.option
-
An abstract option holding an object.
- OptionHolder(String) - Constructor for class coneforest.clianthus.option.OptionHolder
-
Creates new option with given names.
- OptionInteger - Class in coneforest.clianthus.option
-
An option holding a
Integer
value. - OptionInteger(String) - Constructor for class coneforest.clianthus.option.OptionInteger
-
Creates new option with given names.
- OptionLong - Class in coneforest.clianthus.option
-
An option holding a
Long
value. - OptionLong(String) - Constructor for class coneforest.clianthus.option.OptionLong
-
Creates new option with given names.
- OptionPath - Class in coneforest.clianthus.option
- OptionPath(String) - Constructor for class coneforest.clianthus.option.OptionPath
-
Creates new option with given names.
- OptionString - Class in coneforest.clianthus.option
-
An option holding a
String
value. - OptionString(String) - Constructor for class coneforest.clianthus.option.OptionString
-
Creates new option with given names.
- OptionToggle - Class in coneforest.clianthus.option
-
A toggle option.
- OptionToggle(String) - Constructor for class coneforest.clianthus.option.OptionToggle
-
Creates new option with given names.
- OptionWithArg<T> - Class in coneforest.clianthus.option
-
An abstract option with argument.
- OptionWithArg(String) - Constructor for class coneforest.clianthus.option.OptionWithArg
-
Creates new option with given names.
- OptionWithoutArg<T> - Class in coneforest.clianthus.option
-
An abstract option without argument.
- OptionWithoutArg(String) - Constructor for class coneforest.clianthus.option.OptionWithoutArg
-
Creates new option with given names.
P
- parse(String[]) - Method in class coneforest.clianthus.processor.Processor
- parse(String[], int) - Method in class coneforest.clianthus.processor.Processor
- parseArg(String) - Method in class coneforest.clianthus.option.OptionBoolean
- parseArg(String) - Method in class coneforest.clianthus.option.OptionCollectorDouble
- parseArg(String) - Method in class coneforest.clianthus.option.OptionCollectorFloat
- parseArg(String) - Method in class coneforest.clianthus.option.OptionCollectorInteger
- parseArg(String) - Method in class coneforest.clianthus.option.OptionCollectorLong
- parseArg(String) - Method in class coneforest.clianthus.option.OptionCollectorString
- parseArg(String) - Method in class coneforest.clianthus.option.OptionDouble
- parseArg(String) - Method in class coneforest.clianthus.option.OptionFloat
- parseArg(String) - Method in class coneforest.clianthus.option.OptionHolder
-
Parses an argument and returns an object.
- parseArg(String) - Method in class coneforest.clianthus.option.OptionInteger
- parseArg(String) - Method in class coneforest.clianthus.option.OptionLong
- parseArg(String) - Method in class coneforest.clianthus.option.OptionPath
- parseArg(String) - Method in class coneforest.clianthus.option.OptionString
- ProcessingException - Exception in coneforest.clianthus.processor
-
Thrown when error occured during options processing.
- ProcessingException(String) - Constructor for exception coneforest.clianthus.processor.ProcessingException
-
Constructor.
- Processor - Class in coneforest.clianthus.processor
-
Options processor.
- Processor(Option...) - Constructor for class coneforest.clianthus.processor.Processor
-
Constructor.
All Classes and Interfaces|All Packages|Serialized Form