public static enum JavaCommandLine.OptionValueDelimiter extends Enum<JavaCommandLine.OptionValueDelimiter>
| Enum Constant and Description |
|---|
EQUALS_SIGN
The option value is separated from the option name by an equals sign, e.g.
|
WHITESPACE
The option value is separated from the option name by whitespace (hence it is actually a separate command
line argument, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static JavaCommandLine.OptionValueDelimiter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaCommandLine.OptionValueDelimiter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaCommandLine.OptionValueDelimiter WHITESPACE
public static final JavaCommandLine.OptionValueDelimiter EQUALS_SIGN
public static JavaCommandLine.OptionValueDelimiter[] values()
for (JavaCommandLine.OptionValueDelimiter c : JavaCommandLine.OptionValueDelimiter.values()) System.out.println(c);
public static JavaCommandLine.OptionValueDelimiter 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 nullCopyright © 2008-2014 Red Hat, Inc.. All Rights Reserved.