Package com.google.api.expr.v1alpha1
Interface ListValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListValue,ListValue.Builder
public interface ListValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValuegetValues(int index)The ordered values in the list.intgetValuesCount()The ordered values in the list.java.util.List<Value>getValuesList()The ordered values in the list.ValueOrBuildergetValuesOrBuilder(int index)The ordered values in the list.java.util.List<? extends ValueOrBuilder>getValuesOrBuilderList()The ordered values in the list.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getValuesList
java.util.List<Value> getValuesList()
The ordered values in the list.
repeated .google.api.expr.v1alpha1.Value values = 1;
-
getValues
Value getValues(int index)
The ordered values in the list.
repeated .google.api.expr.v1alpha1.Value values = 1;
-
getValuesCount
int getValuesCount()
The ordered values in the list.
repeated .google.api.expr.v1alpha1.Value values = 1;
-
getValuesOrBuilderList
java.util.List<? extends ValueOrBuilder> getValuesOrBuilderList()
The ordered values in the list.
repeated .google.api.expr.v1alpha1.Value values = 1;
-
getValuesOrBuilder
ValueOrBuilder getValuesOrBuilder(int index)
The ordered values in the list.
repeated .google.api.expr.v1alpha1.Value values = 1;
-
-