Package | Description |
---|---|
com.google.cloud.datastore |
A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ValueBuilder<V,P extends Value<V>,B extends ValueBuilder<V,P,B>>
A common interface for Value builders.
|
Modifier and Type | Class and 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 |
Modifier and Type | Method and Description |
---|---|
<T extends Value<?>> |
BaseEntity.getList(String name)
Returns the property value as a list of values.
|
<V extends Value<?>> |
BaseEntity.getValue(String name)
Returns the
Value for the given property name . |
Modifier and Type | Method and Description |
---|---|
List<? extends Value<?>> |
ListValue.Builder.get() |
protected Map<String,Value<?>> |
BaseEntity.Builder.setProperties() |
Modifier and Type | Method and Description |
---|---|
ListValue.Builder |
ListValue.Builder.addValue(Value<?> first,
Value<?>... other)
Adds the provided values to the
ListValue builder. |
ListValue.Builder |
ListValue.Builder.addValue(Value<?> first,
Value<?>... other)
Adds the provided values to the
ListValue 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 ListValue |
ListValue.of(Value<?> first,
Value<?>... other)
Creates a
ListValue object given a number of Value objects. |
static ListValue |
ListValue.of(Value<?> first,
Value<?>... other)
Creates a
ListValue object given a number of Value 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 type
ListValue . |
B |
BaseEntity.Builder.set(String name,
Value<?> first,
Value<?> second,
Value<?>... others)
Sets a property of type
ListValue . |
B |
BaseEntity.Builder.set(String name,
Value<?> first,
Value<?> second,
Value<?>... others)
Sets a property of type
ListValue . |
Modifier and Type | Method and Description |
---|---|
static ListValue |
ListValue.of(List<? extends Value<?>> values)
Creates a
ListValue object given a list of Value objects. |
ListValue.Builder |
ListValue.Builder.set(List<? extends Value<?>> values)
Sets the list of values of this
ListValue builder to values . |
B |
BaseEntity.Builder.set(String name,
List<? extends Value<?>> values)
Sets a property of type
ListValue . |
protected B |
BaseEntity.Builder.setProperties(Map<String,Value<?>> properties) |
Constructor and Description |
---|
ListValue(Value<?> first,
Value<?>... other) |
ListValue(Value<?> first,
Value<?>... other) |
Constructor and Description |
---|
ListValue(List<? extends Value<?>> values) |
Copyright © 2019 Google LLC. All rights reserved.