org.hbase.async.generated
Interface ClientPB.GetOrBuilder

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

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


Method Summary
 HBasePB.NameBytesPair getAttribute(int index)
          repeated .NameBytesPair attribute = 3;
 int getAttributeCount()
          repeated .NameBytesPair attribute = 3;
 List<HBasePB.NameBytesPair> getAttributeList()
          repeated .NameBytesPair attribute = 3;
 boolean getCacheBlocks()
          optional bool cache_blocks = 7 [default = true];
 boolean getClosestRowBefore()
          optional bool closest_row_before = 11 [default = false];
 ClientPB.Column getColumn(int index)
          repeated .Column column = 2;
 int getColumnCount()
          repeated .Column column = 2;
 List<ClientPB.Column> getColumnList()
          repeated .Column column = 2;
 boolean getExistenceOnly()
          optional bool existence_only = 10 [default = false];
 FilterPB.Filter getFilter()
          optional .Filter filter = 4;
 int getMaxVersions()
          optional uint32 max_versions = 6 [default = 1];
 com.google.protobuf.ByteString getRow()
          required bytes row = 1;
 int getStoreLimit()
          optional uint32 store_limit = 8;
 int getStoreOffset()
          optional uint32 store_offset = 9;
 HBasePB.TimeRange getTimeRange()
          optional .TimeRange time_range = 5;
 boolean hasCacheBlocks()
          optional bool cache_blocks = 7 [default = true];
 boolean hasClosestRowBefore()
          optional bool closest_row_before = 11 [default = false];
 boolean hasExistenceOnly()
          optional bool existence_only = 10 [default = false];
 boolean hasFilter()
          optional .Filter filter = 4;
 boolean hasMaxVersions()
          optional uint32 max_versions = 6 [default = 1];
 boolean hasRow()
          required bytes row = 1;
 boolean hasStoreLimit()
          optional uint32 store_limit = 8;
 boolean hasStoreOffset()
          optional uint32 store_offset = 9;
 boolean hasTimeRange()
          optional .TimeRange time_range = 5;
 
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
 

Method Detail

hasRow

boolean hasRow()
required bytes row = 1;


getRow

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


getColumnList

List<ClientPB.Column> getColumnList()
repeated .Column column = 2;


getColumn

ClientPB.Column getColumn(int index)
repeated .Column column = 2;


getColumnCount

int getColumnCount()
repeated .Column column = 2;


getAttributeList

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


getAttribute

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


getAttributeCount

int getAttributeCount()
repeated .NameBytesPair attribute = 3;


hasFilter

boolean hasFilter()
optional .Filter filter = 4;


getFilter

FilterPB.Filter getFilter()
optional .Filter filter = 4;


hasTimeRange

boolean hasTimeRange()
optional .TimeRange time_range = 5;


getTimeRange

HBasePB.TimeRange getTimeRange()
optional .TimeRange time_range = 5;


hasMaxVersions

boolean hasMaxVersions()
optional uint32 max_versions = 6 [default = 1];


getMaxVersions

int getMaxVersions()
optional uint32 max_versions = 6 [default = 1];


hasCacheBlocks

boolean hasCacheBlocks()
optional bool cache_blocks = 7 [default = true];


getCacheBlocks

boolean getCacheBlocks()
optional bool cache_blocks = 7 [default = true];


hasStoreLimit

boolean hasStoreLimit()
optional uint32 store_limit = 8;


getStoreLimit

int getStoreLimit()
optional uint32 store_limit = 8;


hasStoreOffset

boolean hasStoreOffset()
optional uint32 store_offset = 9;


getStoreOffset

int getStoreOffset()
optional uint32 store_offset = 9;


hasExistenceOnly

boolean hasExistenceOnly()
optional bool existence_only = 10 [default = false];
 The result isn't asked for, just check for
 the existence.
 


getExistenceOnly

boolean getExistenceOnly()
optional bool existence_only = 10 [default = false];
 The result isn't asked for, just check for
 the existence.
 


hasClosestRowBefore

boolean hasClosestRowBefore()
optional bool closest_row_before = 11 [default = false];
 If the row to get doesn't exist, return the
 closest row before.
 


getClosestRowBefore

boolean getClosestRowBefore()
optional bool closest_row_before = 11 [default = false];
 If the row to get doesn't exist, return the
 closest row before.
 



Copyright © 2010-2015, The Async HBase Authors