public static enum OperaArgument.OperaArgumentSign extends Enum<OperaArgument.OperaArgumentSign>
GNU_SIGN, POSIX_SIGN and WINDOWS_SIGN.OperaArguments| Enum Constant and Description |
|---|
GNU_SIGN
The GNU sign consists of two dashes, --.
|
POSIX_SIGN
The POSIX sign consists of one dash, -.
|
WINDOWS_SIGN
The WINDOWS sign consists of a slash, /.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue()
Gets the string representation value of the specified sign.
|
static OperaArgument.OperaArgumentSign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperaArgument.OperaArgumentSign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperaArgument.OperaArgumentSign GNU_SIGN
public static final OperaArgument.OperaArgumentSign POSIX_SIGN
public static final OperaArgument.OperaArgumentSign WINDOWS_SIGN
public static OperaArgument.OperaArgumentSign[] values()
for (OperaArgument.OperaArgumentSign c : OperaArgument.OperaArgumentSign.values()) System.out.println(c);
public static OperaArgument.OperaArgumentSign 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 getValue()
Copyright © 2013. All Rights Reserved.