public interface ReadModifyWriteRuleOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getAppendValue()
public abstract ByteString getAppendValue()
Rule specifying that append_value
be appended to the existing value.
If the targeted cell is unset, it will be treated as containing the
empty string.
bytes append_value = 3;
Type | Description |
ByteString | The appendValue. |
getColumnQualifier()
public abstract ByteString getColumnQualifier()
The qualifier of the column to which the read/modify/write should be applied. 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 to which the read/modify/write should be applied.
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 to which the read/modify/write should be applied.
Must match [-_.a-zA-Z0-9]+
string family_name = 1;
Type | Description |
ByteString | The bytes for familyName. |
getIncrementAmount()
public abstract long getIncrementAmount()
Rule specifying that increment_amount
be added to the existing value.
If the targeted cell is unset, it will be treated as containing a zero.
Otherwise, the targeted cell must contain an 8-byte value (interpreted
as a 64-bit big-endian signed integer), or the entire request will fail.
int64 increment_amount = 4;
Type | Description |
long | The incrementAmount. |
getRuleCase()
public abstract ReadModifyWriteRule.RuleCase getRuleCase()
Type | Description |
ReadModifyWriteRule.RuleCase |
hasAppendValue()
public abstract boolean hasAppendValue()
Rule specifying that append_value
be appended to the existing value.
If the targeted cell is unset, it will be treated as containing the
empty string.
bytes append_value = 3;
Type | Description |
boolean | Whether the appendValue field is set. |
hasIncrementAmount()
public abstract boolean hasIncrementAmount()
Rule specifying that increment_amount
be added to the existing value.
If the targeted cell is unset, it will be treated as containing a zero.
Otherwise, the targeted cell must contain an 8-byte value (interpreted
as a 64-bit big-endian signed integer), or the entire request will fail.
int64 increment_amount = 4;
Type | Description |
boolean | Whether the incrementAmount field is set. |