public enum BitShuffleType extends Enum<BitShuffleType>
Modifier and Type | Field and Description |
---|---|
int |
id |
Modifier and Type | Method and Description |
---|---|
int |
getTypeSize() |
static BitShuffleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BitShuffleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitShuffleType BYTE
public static final BitShuffleType SHORT
public static final BitShuffleType INT
public static final BitShuffleType LONG
public static final BitShuffleType FLOAT
public static final BitShuffleType DOUBLE
public static BitShuffleType[] values()
for (BitShuffleType c : BitShuffleType.values()) System.out.println(c);
public static BitShuffleType 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 nullpublic int getTypeSize()
Copyright © 2024 xerial.org. All rights reserved.