public static enum FloatingPointType.Precision extends Enum<FloatingPointType.Precision>
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
FloatingPointType.Precision |
intern() |
String |
toString() |
static FloatingPointType.Precision |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FloatingPointType.Precision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FloatingPointType.Precision HALF
public static final FloatingPointType.Precision SINGLE
public static final FloatingPointType.Precision DOUBLE
public static FloatingPointType.Precision[] values()
for (FloatingPointType.Precision c : FloatingPointType.Precision.values()) System.out.println(c);
public static FloatingPointType.Precision 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 FloatingPointType.Precision intern()
public String toString()
toString in class Enum<FloatingPointType.Precision>Copyright © 2021. All rights reserved.