public static interface Mutation.SetCellOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getColumnQualifier()
public abstract ByteString getColumnQualifier()
The qualifier of the column into which new data should be written. Can be any byte string, including the empty string.
bytes column_qualifier = 2;
Type | Description |
ByteString | The columnQualifier. |
getFamilyName()
public abstract String getFamilyName()
The name of the family into which new data should be written.
Must match [-_.a-zA-Z0-9]+
string family_name = 1;
Type | Description |
String | The familyName. |
getFamilyNameBytes()
public abstract ByteString getFamilyNameBytes()
The name of the family into which new data should be written.
Must match [-_.a-zA-Z0-9]+
string family_name = 1;
Type | Description |
ByteString | The bytes for familyName. |
getTimestampMicros()
public abstract long getTimestampMicros()
The timestamp of the cell into which new data should be written. Use -1 for current Bigtable server time. Otherwise, the client should set this value itself, noting that the default value is a timestamp of zero if the field is left unspecified. Values must match the granularity of the table (e.g. micros, millis).
int64 timestamp_micros = 3;
Type | Description |
long | The timestampMicros. |
getValue()
public abstract ByteString getValue()
The value to be written into the specified cell.
bytes value = 4;
Type | Description |
ByteString | The value. |