AggregateQuerySnapshot

public class AggregateQuerySnapshot


The results of executing an AggregateQuery.

Subclassing Note: Cloud Firestore classes are not meant to be subclassed except for use in test mocks. Subclassing is not supported in production code and new SDK releases may break code that does so.

Summary

Public fields

final AggregateQuery

Public methods

boolean
equals(Object object)

Compares this object with the given object for equality.

@Nullable Object
get(@Nonnull AggregateField aggregateField)

Returns the result of the given aggregation from the server without coercion of data types.

@Nullable Double

Returns the result of the given average aggregation.

long

Returns the number of documents in the result set of the underlying query.

long

Returns the number of documents in the result set of the underlying query.

@Nullable Double
getDouble(@Nonnull AggregateField aggregateField)

Returns the result of the given aggregation as a double.

@Nullable Long
getLong(@Nonnull AggregateField aggregateField)

Returns the result of the given aggregation as a long.

@NonNull AggregateQuery

Returns the query that was executed to produce this result.

int

Calculates and returns the hash code for this object.

Public fields

query

@Nonnull
public final AggregateQuery query

Public methods

equals

public boolean equals(Object object)

Compares this object with the given object for equality.

This object is considered "equal" to the other object if and only if all of the following conditions are satisfied:

  1. object is a non-null instance of AggregateQuerySnapshot.
  2. The AggregateQuery of object compares equal to that of this object.
  3. object has the same results as this object.
Parameters
Object object

The object to compare to this object for equality.

Returns
boolean

true if this object is "equal" to the given object, as defined above, or false otherwise.

get

public @Nullable Object get(@Nonnull AggregateField aggregateField)

Returns the result of the given aggregation from the server without coercion of data types. Throws java.lang.RuntimeException if the `aggregateField` was not requested when calling `query.aggregate(...)`.

Parameters
@Nonnull AggregateField aggregateField

The aggregation for which the value is requested.

Returns
@Nullable Object

The result of the given aggregation.

get

public @Nullable Double get(@Nonnull AggregateField.AverageAggregateField averageAggregateField)

Returns the result of the given average aggregation. Since the result of an average aggregation performed by the server is always a double, this convenience overload can be used in lieu of the above `get` method. Throws java.lang.RuntimeException if the `aggregateField` was not requested when calling `query.aggregate(...)`.

Parameters
@Nonnull AggregateField.AverageAggregateField averageAggregateField

The average aggregation for which the value is requested.

Returns
@Nullable Double

The result of the given average aggregation.

get

public long get(@Nonnull AggregateField.CountAggregateField countAggregateField)

Returns the number of documents in the result set of the underlying query.

Parameters
@Nonnull AggregateField.CountAggregateField countAggregateField

The count aggregation for which the value is requested.

Returns
long

The result of the given count aggregation.

getCount

public long getCount()

Returns the number of documents in the result set of the underlying query.

getDouble

public @Nullable Double getDouble(@Nonnull AggregateField aggregateField)

Returns the result of the given aggregation as a double. Coerces all numeric values and throws a RuntimeException if the result of the aggregate is non-numeric. In the case of coercion of long to double, uses java.lang.Long.doubleValue to perform the conversion, and may result in a loss of precision.

Parameters
@Nonnull AggregateField aggregateField

The aggregation for which the value is requested.

Returns
@Nullable Double

The result of the given average aggregation as a double.

getLong

public @Nullable Long getLong(@Nonnull AggregateField aggregateField)

Returns the result of the given aggregation as a long. Coerces all numeric values and throws a RuntimeException if the result of the aggregate is non-numeric. In case of coercion of double to long, uses java.lang.Double.longValue to perform the conversion.

Parameters
@Nonnull AggregateField aggregateField

The aggregation for which the value is requested.

Returns
@Nullable Long

The result of the given average aggregation as a long.

getQuery

public @NonNull AggregateQuery getQuery()

Returns the query that was executed to produce this result.

hashCode

public int hashCode()

Calculates and returns the hash code for this object.

Returns
int

the hash code for this object.