Package dev.cel.expr

Interface EvalState.ResultOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    EvalState.Result, EvalState.Result.Builder
    Enclosing class:
    EvalState

    public static interface EvalState.ResultOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getExpr()
      The id of the expression this result if for.
      long getValue()
      The index in `values` of the resulting value.
      • 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

      • getExpr

        long getExpr()
         The id of the expression this result if for.
         
        int64 expr = 1;
        Returns:
        The expr.
      • getValue

        long getValue()
         The index in `values` of the resulting value.
         
        int64 value = 2;
        Returns:
        The value.