Interface ColumnRangeOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
ColumnRange, ColumnRange.Builder

public interface ColumnRangeOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
     
    com.google.protobuf.ByteString
    Used when giving an inclusive upper bound for the range.
    com.google.protobuf.ByteString
    Used when giving an exclusive upper bound for the range.
    The name of the column family within which this range falls.
    com.google.protobuf.ByteString
    The name of the column family within which this range falls.
     
    com.google.protobuf.ByteString
    Used when giving an inclusive lower bound for the range.
    com.google.protobuf.ByteString
    Used when giving an exclusive lower bound for the range.
    boolean
    Used when giving an inclusive upper bound for the range.
    boolean
    Used when giving an exclusive upper bound for the range.
    boolean
    Used when giving an inclusive lower bound for the range.
    boolean
    Used when giving an exclusive lower bound for the range.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getFamilyName

      String getFamilyName()
       The name of the column family within which this range falls.
       
      string family_name = 1;
      Returns:
      The familyName.
    • getFamilyNameBytes

      com.google.protobuf.ByteString getFamilyNameBytes()
       The name of the column family within which this range falls.
       
      string family_name = 1;
      Returns:
      The bytes for familyName.
    • hasStartQualifierClosed

      boolean hasStartQualifierClosed()
       Used when giving an inclusive lower bound for the range.
       
      bytes start_qualifier_closed = 2;
      Returns:
      Whether the startQualifierClosed field is set.
    • getStartQualifierClosed

      com.google.protobuf.ByteString getStartQualifierClosed()
       Used when giving an inclusive lower bound for the range.
       
      bytes start_qualifier_closed = 2;
      Returns:
      The startQualifierClosed.
    • hasStartQualifierOpen

      boolean hasStartQualifierOpen()
       Used when giving an exclusive lower bound for the range.
       
      bytes start_qualifier_open = 3;
      Returns:
      Whether the startQualifierOpen field is set.
    • getStartQualifierOpen

      com.google.protobuf.ByteString getStartQualifierOpen()
       Used when giving an exclusive lower bound for the range.
       
      bytes start_qualifier_open = 3;
      Returns:
      The startQualifierOpen.
    • hasEndQualifierClosed

      boolean hasEndQualifierClosed()
       Used when giving an inclusive upper bound for the range.
       
      bytes end_qualifier_closed = 4;
      Returns:
      Whether the endQualifierClosed field is set.
    • getEndQualifierClosed

      com.google.protobuf.ByteString getEndQualifierClosed()
       Used when giving an inclusive upper bound for the range.
       
      bytes end_qualifier_closed = 4;
      Returns:
      The endQualifierClosed.
    • hasEndQualifierOpen

      boolean hasEndQualifierOpen()
       Used when giving an exclusive upper bound for the range.
       
      bytes end_qualifier_open = 5;
      Returns:
      Whether the endQualifierOpen field is set.
    • getEndQualifierOpen

      com.google.protobuf.ByteString getEndQualifierOpen()
       Used when giving an exclusive upper bound for the range.
       
      bytes end_qualifier_open = 5;
      Returns:
      The endQualifierOpen.
    • getStartQualifierCase

      ColumnRange.StartQualifierCase getStartQualifierCase()
    • getEndQualifierCase

      ColumnRange.EndQualifierCase getEndQualifierCase()