Package com.google.firestore.v1
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 TypeMethodDescriptionbooleanIf 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.intThe 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
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
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
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
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.
-