org.hbase.async.generated
Interface ClientPB.MutationProtoOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
All Known Implementing Classes:
ClientPB.MutationProto, ClientPB.MutationProto.Builder
Enclosing class:
ClientPB

public static interface ClientPB.MutationProtoOrBuilder
extends com.google.protobuf.MessageLiteOrBuilder


Method Summary
 int getAssociatedCellCount()
          optional int32 associated_cell_count = 8;
 HBasePB.NameBytesPair getAttribute(int index)
          repeated .NameBytesPair attribute = 5;
 int getAttributeCount()
          repeated .NameBytesPair attribute = 5;
 List<HBasePB.NameBytesPair> getAttributeList()
          repeated .NameBytesPair attribute = 5;
 ClientPB.MutationProto.ColumnValue getColumnValue(int index)
          repeated .MutationProto.ColumnValue column_value = 3;
 int getColumnValueCount()
          repeated .MutationProto.ColumnValue column_value = 3;
 List<ClientPB.MutationProto.ColumnValue> getColumnValueList()
          repeated .MutationProto.ColumnValue column_value = 3;
 ClientPB.MutationProto.Durability getDurability()
          optional .MutationProto.Durability durability = 6 [default = USE_DEFAULT];
 ClientPB.MutationProto.MutationType getMutateType()
          optional .MutationProto.MutationType mutate_type = 2;
 com.google.protobuf.ByteString getRow()
          optional bytes row = 1;
 HBasePB.TimeRange getTimeRange()
          optional .TimeRange time_range = 7;
 long getTimestamp()
          optional uint64 timestamp = 4;
 boolean hasAssociatedCellCount()
          optional int32 associated_cell_count = 8;
 boolean hasDurability()
          optional .MutationProto.Durability durability = 6 [default = USE_DEFAULT];
 boolean hasMutateType()
          optional .MutationProto.MutationType mutate_type = 2;
 boolean hasRow()
          optional bytes row = 1;
 boolean hasTimeRange()
          optional .TimeRange time_range = 7;
 boolean hasTimestamp()
          optional uint64 timestamp = 4;
 
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
 

Method Detail

hasRow

boolean hasRow()
optional bytes row = 1;


getRow

com.google.protobuf.ByteString getRow()
optional bytes row = 1;


hasMutateType

boolean hasMutateType()
optional .MutationProto.MutationType mutate_type = 2;


getMutateType

ClientPB.MutationProto.MutationType getMutateType()
optional .MutationProto.MutationType mutate_type = 2;


getColumnValueList

List<ClientPB.MutationProto.ColumnValue> getColumnValueList()
repeated .MutationProto.ColumnValue column_value = 3;


getColumnValue

ClientPB.MutationProto.ColumnValue getColumnValue(int index)
repeated .MutationProto.ColumnValue column_value = 3;


getColumnValueCount

int getColumnValueCount()
repeated .MutationProto.ColumnValue column_value = 3;


hasTimestamp

boolean hasTimestamp()
optional uint64 timestamp = 4;


getTimestamp

long getTimestamp()
optional uint64 timestamp = 4;


getAttributeList

List<HBasePB.NameBytesPair> getAttributeList()
repeated .NameBytesPair attribute = 5;


getAttribute

HBasePB.NameBytesPair getAttribute(int index)
repeated .NameBytesPair attribute = 5;


getAttributeCount

int getAttributeCount()
repeated .NameBytesPair attribute = 5;


hasDurability

boolean hasDurability()
optional .MutationProto.Durability durability = 6 [default = USE_DEFAULT];


getDurability

ClientPB.MutationProto.Durability getDurability()
optional .MutationProto.Durability durability = 6 [default = USE_DEFAULT];


hasTimeRange

boolean hasTimeRange()
optional .TimeRange time_range = 7;
 For some mutations, a result may be returned, in which case,
 time range can be specified for potential performance gain
 


getTimeRange

HBasePB.TimeRange getTimeRange()
optional .TimeRange time_range = 7;
 For some mutations, a result may be returned, in which case,
 time range can be specified for potential performance gain
 


hasAssociatedCellCount

boolean hasAssociatedCellCount()
optional int32 associated_cell_count = 8;
 The below count is set when the associated cells are NOT
 part of this protobuf message; they are passed alongside
 and then this Message is a placeholder with metadata.  The
 count is needed to know how many to peel off the block of Cells as
 ours.  NOTE: This is different from the pb managed cell_count of the
 'cell' field above which is non-null when the cells are pb'd.
 


getAssociatedCellCount

int getAssociatedCellCount()
optional int32 associated_cell_count = 8;
 The below count is set when the associated cells are NOT
 part of this protobuf message; they are passed alongside
 and then this Message is a placeholder with metadata.  The
 count is needed to know how many to peel off the block of Cells as
 ours.  NOTE: This is different from the pb managed cell_count of the
 'cell' field above which is non-null when the cells are pb'd.
 



Copyright © 2010-2015, The Async HBase Authors