public enum NegativeSymbol extends Enum<NegativeSymbol>
Enum Constant and Description |
---|
CREDIT |
LOWERCASE_CREDIT |
NEGATIVE_SIGN |
PARENTHESIS |
UPPERCASE_CREDIT |
Modifier and Type | Method and Description |
---|---|
static NegativeSymbol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NegativeSymbol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NegativeSymbol NEGATIVE_SIGN
public static final NegativeSymbol PARENTHESIS
public static final NegativeSymbol CREDIT
public static final NegativeSymbol UPPERCASE_CREDIT
public static final NegativeSymbol LOWERCASE_CREDIT
public static NegativeSymbol[] values()
for (NegativeSymbol c : NegativeSymbol.values()) System.out.println(c);
public static NegativeSymbol 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 © 2010–2016. All rights reserved.