Package com.google.protobuf
Interface ListValueOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder
- All Known Implementing Classes:
ListValue
,ListValue.Builder
public interface ListValueOrBuilder extends MessageLiteOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Value
getValues(int index)
Repeated field of dynamically typed values.int
getValuesCount()
Repeated field of dynamically typed values.java.util.List<Value>
getValuesList()
Repeated field of dynamically typed values.-
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
-
-
-
-
Method Detail
-
getValuesList
java.util.List<Value> getValuesList()
Repeated field of dynamically typed values.
repeated .google.protobuf.Value values = 1;
-
getValues
Value getValues(int index)
Repeated field of dynamically typed values.
repeated .google.protobuf.Value values = 1;
-
getValuesCount
int getValuesCount()
Repeated field of dynamically typed values.
repeated .google.protobuf.Value values = 1;
-
-