public static enum Number.NumberVariant extends Enum<Number.NumberVariant>
| Enum Constant and Description |
|---|
Float32 |
Float64 |
Int16 |
Int32 |
Int64 |
Int8 |
| Modifier and Type | Method and Description |
|---|---|
static Number.NumberVariant |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Number.NumberVariant[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Number.NumberVariant Int8
public static final Number.NumberVariant Int16
public static final Number.NumberVariant Int32
public static final Number.NumberVariant Int64
public static final Number.NumberVariant Float32
public static final Number.NumberVariant Float64
public static Number.NumberVariant[] values()
for (Number.NumberVariant c : Number.NumberVariant.values()) System.out.println(c);
public static Number.NumberVariant 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 © 2016–2021 Verizon Media. All rights reserved.