Package dev.cel.expr
Interface UnknownSetOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
UnknownSet,UnknownSet.Builder
public interface UnknownSetOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetExprs(int index)The ids of the expressions with unknown values.intgetExprsCount()The ids of the expressions with unknown values.java.util.List<java.lang.Long>getExprsList()The ids of the expressions with unknown values.-
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
-
getExprsList
java.util.List<java.lang.Long> getExprsList()
The ids of the expressions with unknown values.
repeated int64 exprs = 1;- Returns:
- A list containing the exprs.
-
getExprsCount
int getExprsCount()
The ids of the expressions with unknown values.
repeated int64 exprs = 1;- Returns:
- The count of exprs.
-
getExprs
long getExprs(int index)
The ids of the expressions with unknown values.
repeated int64 exprs = 1;- Parameters:
index- The index of the element to return.- Returns:
- The exprs at the given index.
-
-