Package org.apache.arrow.vector
Enum BufferLayout.BufferType
- All Implemented Interfaces:
Serializable
,Comparable<BufferLayout.BufferType>
,java.lang.constant.Constable
- Enclosing class:
- BufferLayout
Enumeration of the different logical types a buffer can have. Data buffer is common to most of
the layouts. Offset buffer is used for variable width types. Validity buffer is used for
nullable types. Type buffer is used for Union types. Size buffer is used for ListView and
LargeListView types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
static BufferLayout.BufferType
Returns the enum constant of this type with the specified name.static BufferLayout.BufferType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DATA
-
OFFSET
-
VALIDITY
-
TYPE
-
SIZE
-
VIEWS
-
VARIADIC_DATA_BUFFERS
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
-