Interface Converter<A,​B>

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    @Internal
    public interface Converter<A,​B>
    Functional interface for converting between two types.

    CEL Library Internals. Do Not Use.

    • Method Detail

      • convert

        B convert​(A value)