Interface CursorOrBuilder

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

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

    Modifier and Type
    Method
    Description
    boolean
    If the position is just before or just after the given values, relative to the sort order defined by the query.
    getValues(int index)
    The values that represent a position, in the order they appear in the order by clause of a query.
    int
    The values that represent a position, in the order they appear in the order by clause of a query.
    The values that represent a position, in the order they appear in the order by clause of a query.
    getValuesOrBuilder(int index)
    The values that represent a position, in the order they appear in the order by clause of a query.
    List<? extends ValueOrBuilder>
    The values that represent a position, in the order they appear in the order by clause of a query.

    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

    • getValuesList

      List<Value> getValuesList()
       The values that represent a position, in the order they appear in
       the order by clause of a query.
      
       Can contain fewer values than specified in the order by clause.
       
      repeated .google.firestore.v1.Value values = 1;
    • getValues

      Value getValues(int index)
       The values that represent a position, in the order they appear in
       the order by clause of a query.
      
       Can contain fewer values than specified in the order by clause.
       
      repeated .google.firestore.v1.Value values = 1;
    • getValuesCount

      int getValuesCount()
       The values that represent a position, in the order they appear in
       the order by clause of a query.
      
       Can contain fewer values than specified in the order by clause.
       
      repeated .google.firestore.v1.Value values = 1;
    • getValuesOrBuilderList

      List<? extends ValueOrBuilder> getValuesOrBuilderList()
       The values that represent a position, in the order they appear in
       the order by clause of a query.
      
       Can contain fewer values than specified in the order by clause.
       
      repeated .google.firestore.v1.Value values = 1;
    • getValuesOrBuilder

      ValueOrBuilder getValuesOrBuilder(int index)
       The values that represent a position, in the order they appear in
       the order by clause of a query.
      
       Can contain fewer values than specified in the order by clause.
       
      repeated .google.firestore.v1.Value values = 1;
    • getBefore

      boolean getBefore()
       If the position is just before or just after the given values, relative
       to the sort order defined by the query.
       
      bool before = 2;
      Returns:
      The before.