Package-level declarations
Types
Query returning RealmResults.
A RealmQuery encapsulates a query on a Realm, a RealmResults or a RealmList instance using the Builder pattern. The query is executed using either
A Realm Result holds the results of querying the Realm.
Queries that return scalar, nullable values. This type of query is used to more accurately represent the results provided by some query operations, e.g. RealmQuery.min or RealmQuery.max.
Queries that return scalar values. This type of query is used to more accurately represent the results provided by some query operations, e.g. RealmQuery.count or RealmQuery.sum.
Query returning a single RealmObject or EmbeddedRealmObject.
Properties
Functions
Similar to
Similar to
Similar to RealmScalarQuery.find but it receives a block in which the scalar result from the query is provided.
Similar to RealmSingleQuery.find but it receives a block in which the RealmObject or EmbeddedRealmObject from the query is provided.
Similar to RealmQuery.max but the type parameter is automatically inferred.
Similar to RealmQuery.min but the type parameter is automatically inferred.
Similar to RealmQuery.sum but the type parameter is automatically inferred.