Interface ArgParser.TestInterface1
-
- Enclosing class:
- ArgParser
private static interface ArgParser.TestInterface1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ArgParser.PrimaryColor
color()
java.lang.String
lake()
int
value()
-
-
-
Method Detail
-
value
@DefaultValue("27") @Help("An integer value") int value()
-
lake
@DefaultValue("Michigan") @Help("The name of a lake") java.lang.String lake()
-
color
@DefaultValue("RED") @Help("Pick a color") ArgParser.PrimaryColor color()
-
-