public static enum NativeArrayTraits.TYPE extends java.lang.Enum<NativeArrayTraits.TYPE>
| Enum Constant and Description |
|---|
NORMAL |
REQUIRES_ELEMENT_DYNAMIC_BIT_SIZE |
REQUIRES_ELEMENT_FACTORY |
REQUIRES_ELEMENT_FIXED_BIT_SIZE |
TEMPLATED |
| Modifier and Type | Method and Description |
|---|---|
static NativeArrayTraits.TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NativeArrayTraits.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NativeArrayTraits.TYPE TEMPLATED
public static final NativeArrayTraits.TYPE REQUIRES_ELEMENT_FIXED_BIT_SIZE
public static final NativeArrayTraits.TYPE REQUIRES_ELEMENT_DYNAMIC_BIT_SIZE
public static final NativeArrayTraits.TYPE REQUIRES_ELEMENT_FACTORY
public static final NativeArrayTraits.TYPE NORMAL
public static NativeArrayTraits.TYPE[] values()
for (NativeArrayTraits.TYPE c : NativeArrayTraits.TYPE.values()) System.out.println(c);
public static NativeArrayTraits.TYPE valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullLast updated 2024-10-29 12:56:13