Uses of Class
com.google.cloud.datastore.LatLng
-
Packages that use LatLng Package Description com.google.cloud.datastore A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications. -
-
Uses of LatLng in com.google.cloud.datastore
Methods in com.google.cloud.datastore that return LatLng Modifier and Type Method Description LatLng
BaseEntity. getLatLng(String name)
Returns the property value as a LatLng.static LatLng
LatLng. of(double latitude, double longitude)
Methods in com.google.cloud.datastore with parameters of type LatLng Modifier and Type Method Description ListValue.Builder
ListValue.Builder. addValue(LatLng first, LatLng... other)
Adds the providedLatLng
values to theListValue
builder.static LatLngValue.Builder
LatLngValue. newBuilder(LatLng value)
static LatLngValue
LatLngValue. of(LatLng value)
static ListValue
ListValue. of(LatLng first, LatLng... other)
Creates aListValue
object given a number ofLatLng
values.B
BaseEntity.Builder. set(String name, LatLng value)
Sets a property of typeLatLng
.B
BaseEntity.Builder. set(String name, LatLng first, LatLng second, LatLng... others)
Sets a list property containing elements of typeLatLng
.Constructors in com.google.cloud.datastore with parameters of type LatLng Constructor Description LatLngValue(LatLng value)
-