- getFlag() - Method in class gnu.getopt.LongOpt
-
Returns the value of the 'flag' field for this long option
- getHasArg() - Method in class gnu.getopt.LongOpt
-
Returns the value set for the 'has_arg' field for this long option
- getLongind() - Method in class gnu.getopt.Getopt
-
Returns the index into the array of long options (NOT argv) representing
the long option that was found.
- getName() - Method in class gnu.getopt.LongOpt
-
Returns the name of this LongOpt as a String
- Getopt - Class in gnu.getopt
-
This is a Java port of GNU getopt, a class for parsing command line
arguments passed to programs.
- Getopt(String, String[], String) - Constructor for class gnu.getopt.Getopt
-
Construct a basic Getopt instance with the given input data.
- Getopt(String, String[], String, LongOpt[]) - Constructor for class gnu.getopt.Getopt
-
Construct a Getopt instance with given input data that is capable of
parsing long options as well as short.
- Getopt(String, String[], String, LongOpt[], boolean) - Constructor for class gnu.getopt.Getopt
-
Construct a Getopt instance with given input data that is capable of
parsing long options and short options.
- getopt() - Method in class gnu.getopt.Getopt
-
This method returns a char that is the current option that has been
parsed from the command line.
- getOptarg() - Method in class gnu.getopt.Getopt
-
For communication from `getopt' to the caller.
- getOptind() - Method in class gnu.getopt.Getopt
-
optind it the index in ARGV of the next element to be scanned.
- getOptopt() - Method in class gnu.getopt.Getopt
-
When getopt() encounters an invalid option, it stores the value of that
option in optopt which can be retrieved with this method.
- getVal() - Method in class gnu.getopt.LongOpt
-
Returns the value of the 'val' field for this long option
- gnu.getopt - package gnu.getopt
-