Package org.apache.accumulo.core.data
Interface KeyBuilder.ColumnQualifierStep
- All Superinterfaces:
KeyBuilder.Build
,KeyBuilder.ColumnVisibilityStep
- Enclosing class:
- KeyBuilder
Builder step used to set the column qualifier part of the
Key
.- Since:
- 2.0
-
Method Summary
Modifier and TypeMethodDescriptionqualifier
(byte[] columnQualifier) Set the column qualifier of theKey
that this builder will build to the parameter.qualifier
(byte[] columnQualifier, int offset, int length) Set the column qualifier of theKey
that this builder will build to the parameter.qualifier
(CharSequence columnQualifier) Set the column qualifier of theKey
that this builder will build to the parameter.qualifier
(org.apache.hadoop.io.Text columnQualifier) Set the column qualifier of theKey
that this builder will build to the parameter.Methods inherited from interface org.apache.accumulo.core.data.KeyBuilder.Build
build, deleted, timestamp
Methods inherited from interface org.apache.accumulo.core.data.KeyBuilder.ColumnVisibilityStep
visibility, visibility, visibility, visibility, visibility
-
Method Details
-
qualifier
Set the column qualifier of theKey
that this builder will build to the parameter.- Parameters:
columnQualifier
- the column qualifier to use for theKey
- Returns:
- this builder
-
qualifier
Set the column qualifier of theKey
that this builder will build to the parameter.- Parameters:
columnQualifier
- the column qualifier to use for theKey
offset
- the offset within the array of the first byte to be read; must be non-negative and no larger than row.lengthlength
- the number of bytes to be read from the given array; must be non-negative and no larger than row.length - offset- Returns:
- this builder
-
qualifier
Set the column qualifier of theKey
that this builder will build to the parameter.- Parameters:
columnQualifier
- the column qualifier to use for theKey
- Returns:
- this builder
-
qualifier
Set the column qualifier of theKey
that this builder will build to the parameter.- Parameters:
columnQualifier
- the column qualifier to use for theKey
. The encoding must be UTF-8- Returns:
- this builder
-