|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Object GetOpt.LongOption
public static class GetOpt.LongOption
A record used in a table of option descriptions passed to a constructor of GetOpt. For example,
new LongOption("color", LongOption.REQ_ARG, 'c')describes a an option invoked as "--color=red" equivalent to the short option "-c red".
Field Summary | |
---|---|
int |
hasArg
A flag, one of GetOpt.NO_ARG , GetOpt.REQ_ARG , or GetOpt.OPT_ARG . |
String |
name
The option name (for example, "color"). |
char |
val
The equivalent short (one-char) option name (for example 'c'). |
Constructor Summary | |
---|---|
GetOpt.LongOption(String name,
int hasArg,
char val)
Create a LongOption from its components. |
Method Summary | |
---|---|
String |
toString()
Convert this option into a printable string. |
Methods inherited from class Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public String name
public int hasArg
GetOpt.NO_ARG
, GetOpt.REQ_ARG
, or GetOpt.OPT_ARG
.
public char val
Constructor Detail |
---|
public GetOpt.LongOption(String name, int hasArg, char val)
name
- the option name.hasArg
- NO_ARG, REQ_ARG, or OPT_ARG.val
- the equivalent short (one-char) option name.Method Detail |
---|
public String toString()
toString
in class Object
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |