Uses of Class
com.google.cloud.datastore.PathElement
-
Packages that use PathElement Package Description com.google.cloud.datastore A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications. -
-
Uses of PathElement in com.google.cloud.datastore
Methods in com.google.cloud.datastore that return PathElement Modifier and Type Method Description static PathElement
PathElement. of(String kind, long id)
static PathElement
PathElement. of(String kind, String name)
Methods in com.google.cloud.datastore that return types with arguments of type PathElement Modifier and Type Method Description List<PathElement>
BaseKey. getAncestors()
Returns an immutable list with the key's ancestors.Methods in com.google.cloud.datastore with parameters of type PathElement Modifier and Type Method Description B
BaseKey.Builder. addAncestor(PathElement ancestor)
Adds an ancestor for this key.B
BaseKey.Builder. addAncestors(PathElement ancestor, PathElement... other)
Adds the provided ancestors to the key.Method parameters in com.google.cloud.datastore with type arguments of type PathElement Modifier and Type Method Description B
BaseKey.Builder. addAncestors(Iterable<PathElement> ancestors)
Adds the provided ancestors to the key.
-