public abstract static class BigtableColumnFamily.Builder extends Object
Constructor and Description |
---|
Builder() |
Modifier and Type | Method and Description |
---|---|
abstract BigtableColumnFamily |
build() |
abstract BigtableColumnFamily.Builder |
setColumns(List<BigtableColumn> columns)
Lists of columns that should be exposed as individual fields as opposed to a list of (column
name, value) pairs.
|
abstract BigtableColumnFamily.Builder |
setEncoding(String encoding)
The encoding of the values when the type is not STRING.
|
abstract BigtableColumnFamily.Builder |
setFamilyID(String familyID)
Identifier of the column family.
|
abstract BigtableColumnFamily.Builder |
setOnlyReadLatest(Boolean onlyReadLatest)
If true, only the latest version of values are exposed for all columns in this column family.
|
abstract BigtableColumnFamily.Builder |
setType(String type)
The type to convert the value in cells of this column family.
|
public abstract BigtableColumnFamily.Builder setFamilyID(String familyID)
public abstract BigtableColumnFamily.Builder setColumns(List<BigtableColumn> columns)
public abstract BigtableColumnFamily.Builder setEncoding(String encoding)
Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions.
This can be overridden for a specific column by listing that column in 'columns' and specifying an encoding for it.
public abstract BigtableColumnFamily.Builder setOnlyReadLatest(Boolean onlyReadLatest)
public abstract BigtableColumnFamily.Builder setType(String type)
Following BigQuery types are allowed (case-sensitive): BYTES STRING INTEGER FLOAT BOOLEAN.
The default type is BYTES. This can be overridden for a specific column by listing that column in 'columns' and specifying a type for it.
public abstract BigtableColumnFamily build()
Copyright © 2019 Google LLC. All rights reserved.