Package dev.cel.expr

Interface MapValue.EntryOrBuilder

    • Method Detail

      • hasKey

        boolean hasKey()
         The key.
         Must be unique with in the map.
         Currently only boolean, int, uint, and string values can be keys.
         
        .cel.expr.Value key = 1;
        Returns:
        Whether the key field is set.
      • getKey

        Value getKey()
         The key.
         Must be unique with in the map.
         Currently only boolean, int, uint, and string values can be keys.
         
        .cel.expr.Value key = 1;
        Returns:
        The key.
      • getKeyOrBuilder

        ValueOrBuilder getKeyOrBuilder()
         The key.
         Must be unique with in the map.
         Currently only boolean, int, uint, and string values can be keys.
         
        .cel.expr.Value key = 1;
      • hasValue

        boolean hasValue()
         The value.
         
        .cel.expr.Value value = 2;
        Returns:
        Whether the value field is set.
      • getValue

        Value getValue()
         The value.
         
        .cel.expr.Value value = 2;
        Returns:
        The value.
      • getValueOrBuilder

        ValueOrBuilder getValueOrBuilder()
         The value.
         
        .cel.expr.Value value = 2;