public static enum VectorFieldArgs.VectorType extends Enum<VectorFieldArgs.VectorType>
| Enum Constant and Description |
|---|
BFLOAT16
16-bit brain floating point.
|
FLOAT16
16-bit floating point.
|
FLOAT32
32-bit floating point.
|
FLOAT64
64-bit floating point.
|
INT8
8-bit signed integer.
|
UINT8
8-bit unsigned integer.
|
| Modifier and Type | Method and Description |
|---|---|
static VectorFieldArgs.VectorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VectorFieldArgs.VectorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorFieldArgs.VectorType BFLOAT16
public static final VectorFieldArgs.VectorType FLOAT16
public static final VectorFieldArgs.VectorType FLOAT32
public static final VectorFieldArgs.VectorType FLOAT64
public static final VectorFieldArgs.VectorType INT8
public static final VectorFieldArgs.VectorType UINT8
public static VectorFieldArgs.VectorType[] values()
for (VectorFieldArgs.VectorType c : VectorFieldArgs.VectorType.values()) System.out.println(c);
public static VectorFieldArgs.VectorType 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 © 2026 lettuce.io. All rights reserved.