public enum Precision extends Enum<Precision>
| Enum Constant and Description |
|---|
Fixed_32 |
Fixed_64 |
Floating_32 |
Floating_64 |
| Modifier and Type | Method and Description |
|---|---|
static Precision |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Precision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Precision Floating_32
public static final Precision Floating_64
public static final Precision Fixed_32
public static final Precision Fixed_64
public static Precision[] values()
for (Precision c : Precision.values()) System.out.println(c);
public static 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 nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.