Package com.google.datastore.v1
Interface ArrayValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ArrayValue
,ArrayValue.Builder
public interface ArrayValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Value
getValues(int index)
Values in the array.int
getValuesCount()
Values in the array.List<Value>
getValuesList()
Values in the array.ValueOrBuilder
getValuesOrBuilder(int index)
Values in the array.List<? extends ValueOrBuilder>
getValuesOrBuilderList()
Values in the array.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getValuesList
List<Value> getValuesList()
Values in the array. The order of values in an array is preserved as long as all values have identical settings for 'exclude_from_indexes'.
repeated .google.datastore.v1.Value values = 1;
-
getValues
Value getValues(int index)
Values in the array. The order of values in an array is preserved as long as all values have identical settings for 'exclude_from_indexes'.
repeated .google.datastore.v1.Value values = 1;
-
getValuesCount
int getValuesCount()
Values in the array. The order of values in an array is preserved as long as all values have identical settings for 'exclude_from_indexes'.
repeated .google.datastore.v1.Value values = 1;
-
getValuesOrBuilderList
List<? extends ValueOrBuilder> getValuesOrBuilderList()
Values in the array. The order of values in an array is preserved as long as all values have identical settings for 'exclude_from_indexes'.
repeated .google.datastore.v1.Value values = 1;
-
getValuesOrBuilder
ValueOrBuilder getValuesOrBuilder(int index)
Values in the array. The order of values in an array is preserved as long as all values have identical settings for 'exclude_from_indexes'.
repeated .google.datastore.v1.Value values = 1;
-
-