public enum Flag extends Enum<Flag>
Enum Constant and Description |
---|
BATCHMODE |
CONFIG
Flag to specify a configuration file to configure the tool behavior.
|
HELP
Flag to display the help.
|
KEYSTOREPASS
Flag for the keystore password.
|
LOG
Flag to output the logging to a file.
|
PASSWORD
Flag for the username password.
|
USERNAME
Flag for the username of an authorized user.
|
VERBOSE
Flag to change the severity level of the messaging in the report.
|
VERSION
Flag to display the version.
|
Modifier and Type | Method and Description |
---|---|
boolean |
allowsMultipleArgs()
Find out if the flag can handle multiple arguments.
|
String |
getArgName()
Get the argument name of the flag.
|
Object |
getArgType()
Get the argument type of the flag.
|
String |
getDescription()
Get the flag description.
|
String |
getLongName()
Get the long name of the flag.
|
static org.apache.commons.cli.Options |
getOptions()
Get the command-line options.
|
String |
getShortName()
Get the short name of the flag.
|
static Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flag BATCHMODE
public static final Flag CONFIG
public static final Flag HELP
public static final Flag KEYSTOREPASS
public static final Flag LOG
public static final Flag PASSWORD
public static final Flag USERNAME
public static final Flag VERSION
public static final Flag VERBOSE
public static Flag[] values()
for (Flag c : Flag.values()) System.out.println(c);
public static Flag valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getShortName()
public String getLongName()
public String getArgName()
public boolean allowsMultipleArgs()
public Object getArgType()
public String getDescription()
public static org.apache.commons.cli.Options getOptions()
Copyright © 2010–2016 Planetary Data System. All rights reserved.