org.apache.hadoop.hbase.protobuf.generated
Interface ClientProtos.ResultOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
ClientProtos.Result, ClientProtos.Result.Builder
Enclosing class:
ClientProtos

public static interface ClientProtos.ResultOrBuilder
extends com.google.protobuf.MessageOrBuilder


Method Summary
 int getAssociatedCellCount()
          optional int32 associated_cell_count = 2;
 CellProtos.Cell getCell(int index)
          repeated .Cell cell = 1;
 int getCellCount()
          repeated .Cell cell = 1;
 List<CellProtos.Cell> getCellList()
          repeated .Cell cell = 1;
 CellProtos.CellOrBuilder getCellOrBuilder(int index)
          repeated .Cell cell = 1;
 List<? extends CellProtos.CellOrBuilder> getCellOrBuilderList()
          repeated .Cell cell = 1;
 boolean getExists()
          optional bool exists = 3;
 boolean hasAssociatedCellCount()
          optional int32 associated_cell_count = 2;
 boolean hasExists()
          optional bool exists = 3;
 
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField
 
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
 

Method Detail

getCellList

List<CellProtos.Cell> getCellList()
repeated .Cell cell = 1;
 Result includes the Cells or else it just has a count of Cells
 that are carried otherwise.
 


getCell

CellProtos.Cell getCell(int index)
repeated .Cell cell = 1;
 Result includes the Cells or else it just has a count of Cells
 that are carried otherwise.
 


getCellCount

int getCellCount()
repeated .Cell cell = 1;
 Result includes the Cells or else it just has a count of Cells
 that are carried otherwise.
 


getCellOrBuilderList

List<? extends CellProtos.CellOrBuilder> getCellOrBuilderList()
repeated .Cell cell = 1;
 Result includes the Cells or else it just has a count of Cells
 that are carried otherwise.
 


getCellOrBuilder

CellProtos.CellOrBuilder getCellOrBuilder(int index)
repeated .Cell cell = 1;
 Result includes the Cells or else it just has a count of Cells
 that are carried otherwise.
 


hasAssociatedCellCount

boolean hasAssociatedCellCount()
optional int32 associated_cell_count = 2;
 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 just 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 = 2;
 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 just 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.
 


hasExists

boolean hasExists()
optional bool exists = 3;
 used for Get to check existence only. Not set if existence_only was not set to true
  in the query.
 


getExists

boolean getExists()
optional bool exists = 3;
 used for Get to check existence only. Not set if existence_only was not set to true
  in the query.
 



Copyright © 2015 The Apache Software Foundation. All Rights Reserved.