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 interfaceValueBuilder<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 classBlobValueclassBooleanValueclassDoubleValueclassEntityValueclassKeyValueclassLatLngValueclassListValueA Google Cloud Datastore list value.classLongValueclassNullValueclassRawValueclassStringValueclassTimestampValueMethods 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 theValuefor 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.BuilderListValue.Builder. addValue(Value<?> first, Value<?>... other)Adds the provided values to theListValuebuilder.static StructuredQuery.PropertyFilterStructuredQuery.PropertyFilter. eq(String property, Value<?> value)static StructuredQuery.PropertyFilterStructuredQuery.PropertyFilter. ge(String property, Value<?> value)static StructuredQuery.PropertyFilterStructuredQuery.PropertyFilter. gt(String property, Value<?> value)static StructuredQuery.PropertyFilterStructuredQuery.PropertyFilter. le(String property, Value<?> value)static StructuredQuery.PropertyFilterStructuredQuery.PropertyFilter. lt(String property, Value<?> value)static StructuredQuery.PropertyFilterStructuredQuery.PropertyFilter. neq(String property, Value<?> value)static ListValueListValue. of(Value<?> first, Value<?>... other)Creates aListValueobject given a number ofValueobjects.BBaseEntity.Builder. set(String name, Value<?> value)Sets a property.BBaseEntity.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 ListValueListValue. of(List<? extends Value<?>> values)Creates aListValueobject given a list ofValueobjects.BBaseEntity.Builder. set(String name, List<? extends Value<?>> values)Sets a property of typeListValue.ListValue.BuilderListValue.Builder. set(List<? extends Value<?>> values)Sets the list of values of thisListValuebuilder tovalues.protected BBaseEntity.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)
-