public enum MathType extends Enum<MathType>
| Enum Constant and Description |
|---|
INTEGER_64_BITS
The default math precision that uses integer arithmetic with 64 bits numbers.
|
| Modifier and Type | Method and Description |
|---|---|
static MathType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MathType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MathType INTEGER_64_BITS
public static MathType[] values()
for (MathType c : MathType.values()) System.out.println(c);
public static MathType 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 © 2024. All rights reserved.