Uses of Class
com.google.cloud.datastore.StructuredQuery.OrderBy
-
Packages that use StructuredQuery.OrderBy Package Description com.google.cloud.datastore A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications. -
-
Uses of StructuredQuery.OrderBy in com.google.cloud.datastore
Methods in com.google.cloud.datastore that return StructuredQuery.OrderBy Modifier and Type Method Description static StructuredQuery.OrderBy
StructuredQuery.OrderBy. asc(String property)
static StructuredQuery.OrderBy
StructuredQuery.OrderBy. desc(String property)
Methods in com.google.cloud.datastore that return types with arguments of type StructuredQuery.OrderBy Modifier and Type Method Description List<StructuredQuery.OrderBy>
StructuredQuery. getOrderBy()
Returns the order by clause for this query.Methods in com.google.cloud.datastore with parameters of type StructuredQuery.OrderBy Modifier and Type Method Description StructuredQuery.Builder<V>
StructuredQuery.Builder. addOrderBy(StructuredQuery.OrderBy orderBy, StructuredQuery.OrderBy... others)
Adds settings to the existing order by clause.StructuredQuery.Builder<V>
StructuredQuery.Builder. setOrderBy(StructuredQuery.OrderBy orderBy, StructuredQuery.OrderBy... others)
Sets the query's order by clause (clearing any previously specified order by settings).
-