Class TypeValue


  • @Immutable
    public abstract class TypeValue
    extends CelValue
    TypeValue holds the CEL type information for the underlying CelValue.
    • Constructor Detail

      • TypeValue

        public TypeValue()
    • Method Detail

      • value

        public abstract CelType value()
        Description copied from class: CelValue
        The underlying value. This is typically the Java native value or a derived instance of CelValue (ex: an element in lists or key/value pair in maps).
        Specified by:
        value in class CelValue
      • celType

        public abstract TypeType celType()
        Description copied from class: CelValue
        The CelType that represents this value.
        Specified by:
        celType in class CelValue