Package dev.cel.expr
Interface ListValueOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
ListValue,ListValue.Builder
public interface ListValueOrBuilder extends 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.MessageLiteOrBuilder
isInitialized
-
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 .cel.expr.Value values = 1;
-
getValues
Value getValues(int index)
The ordered values in the list.
repeated .cel.expr.Value values = 1;
-
getValuesCount
int getValuesCount()
The ordered values in the list.
repeated .cel.expr.Value values = 1;
-
getValuesOrBuilderList
java.util.List<? extends ValueOrBuilder> getValuesOrBuilderList()
The ordered values in the list.
repeated .cel.expr.Value values = 1;
-
getValuesOrBuilder
ValueOrBuilder getValuesOrBuilder(int index)
The ordered values in the list.
repeated .cel.expr.Value values = 1;
-
-