Class BigtableColumnFamily (2.38.2)

public abstract class BigtableColumnFamily implements Serializable

List of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types.

You can use this list to do type conversions - see the 'type' field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.

Inheritance

java.lang.Object > BigtableColumnFamily

Implements

Serializable

Static Methods

newBuilder()

public static BigtableColumnFamily.Builder newBuilder()

Returns a builder for a BigtableColumnFamily object.

Returns
TypeDescription
BigtableColumnFamily.Builder

Constructors

BigtableColumnFamily()

public BigtableColumnFamily()

Methods

getColumns()

public abstract List<BigtableColumn> getColumns()
Returns
TypeDescription
List<BigtableColumn>

getEncoding()

public abstract String getEncoding()
Returns
TypeDescription
String

getFamilyID()

public abstract String getFamilyID()
Returns
TypeDescription
String

getOnlyReadLatest()

public abstract Boolean getOnlyReadLatest()
Returns
TypeDescription
Boolean

getType()

public abstract String getType()
Returns
TypeDescription
String