Uses of Class
com.google.cloud.datastore.Value
-
Packages that use Value Package Description com.google.cloud.datastore A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications. -
-
Uses of Value in com.google.cloud.datastore
Classes in com.google.cloud.datastore with type parameters of type Value Modifier and Type Interface Description interface
ValueBuilder<V,P extends Value<V>,B extends ValueBuilder<V,P,B>>
A common interface for Value builders.Subclasses of Value in com.google.cloud.datastore Modifier and Type Class Description class
BlobValue
class
BooleanValue
class
DoubleValue
class
EntityValue
class
KeyValue
class
LatLngValue
class
ListValue
A Google Cloud Datastore list value.class
LongValue
class
NullValue
class
RawValue
class
StringValue
class
TimestampValue
Methods in com.google.cloud.datastore with type parameters of type Value Modifier and Type Method Description <T extends Value<?>>
List<T>BaseEntity. getList(String name)
Returns the property value as a list of values.<V extends Value<?>>
VBaseEntity. getValue(String name)
Returns theValue
for the given propertyname
.Methods in com.google.cloud.datastore that return Value Modifier and Type Method Description static Value<?>
Value. fromPb(Value proto)
Methods in com.google.cloud.datastore that return types with arguments of type Value Modifier and Type Method Description List<? extends Value<?>>
ListValue.Builder. get()
Map<String,Value<?>>
BaseEntity. getProperties()
Returns the properties.protected Map<String,Value<?>>
BaseEntity.Builder. setProperties()
Methods in com.google.cloud.datastore with parameters of type Value Modifier and Type Method Description ListValue.Builder
ListValue.Builder. addValue(Value<?> first, Value<?>... other)
Adds the provided values to theListValue
builder.static StructuredQuery.PropertyFilter
StructuredQuery.PropertyFilter. eq(String property, Value<?> value)
static StructuredQuery.PropertyFilter
StructuredQuery.PropertyFilter. ge(String property, Value<?> value)
static StructuredQuery.PropertyFilter
StructuredQuery.PropertyFilter. gt(String property, Value<?> value)
static StructuredQuery.PropertyFilter
StructuredQuery.PropertyFilter. le(String property, Value<?> value)
static StructuredQuery.PropertyFilter
StructuredQuery.PropertyFilter. lt(String property, Value<?> value)
static StructuredQuery.PropertyFilter
StructuredQuery.PropertyFilter. neq(String property, Value<?> value)
static ListValue
ListValue. of(Value<?> first, Value<?>... other)
Creates aListValue
object given a number ofValue
objects.B
BaseEntity.Builder. set(String name, Value<?> value)
Sets a property.B
BaseEntity.Builder. set(String name, Value<?> first, Value<?> second, Value<?>... others)
Sets a property of typeListValue
.Method parameters in com.google.cloud.datastore with type arguments of type Value Modifier and Type Method Description static ListValue
ListValue. of(List<? extends Value<?>> values)
Creates aListValue
object given a list ofValue
objects.B
BaseEntity.Builder. set(String name, List<? extends Value<?>> values)
Sets a property of typeListValue
.ListValue.Builder
ListValue.Builder. set(List<? extends Value<?>> values)
Sets the list of values of thisListValue
builder tovalues
.protected B
BaseEntity.Builder. setProperties(Map<String,Value<?>> properties)
Constructors in com.google.cloud.datastore with parameters of type Value Constructor Description ListValue(Value<?> first, Value<?>... other)
Constructor parameters in com.google.cloud.datastore with type arguments of type Value Constructor Description AggregationResult(Map<String,? extends Value<?>> properties)
ListValue(List<? extends Value<?>> values)
-