private static enum SpecialValueDecimal.SpecialValue extends Enum<SpecialValueDecimal.SpecialValue>
| Enum Constant and Description |
|---|
NAN |
NEGATIVE_INFINITY |
POSITIVE_INFINITY |
| Modifier and Type | Method and Description |
|---|---|
static SpecialValueDecimal.SpecialValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpecialValueDecimal.SpecialValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecialValueDecimal.SpecialValue NAN
public static final SpecialValueDecimal.SpecialValue POSITIVE_INFINITY
public static final SpecialValueDecimal.SpecialValue NEGATIVE_INFINITY
public static SpecialValueDecimal.SpecialValue[] values()
for (SpecialValueDecimal.SpecialValue c : SpecialValueDecimal.SpecialValue.values()) System.out.println(c);
public static SpecialValueDecimal.SpecialValue 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 © 2021 JBoss by Red Hat. All rights reserved.