testbox.system.modules.cbstreams.models.proxies

Class UnaryOperator

lucee.Component
    extended by testbox.system.modules.cbstreams.models.proxies.UnaryOperator

Functional interface that maps to java.util.function.UnaryOperator See https://docs.oracle.com/javase/8/docs/api/java/util/function/UnaryOperator.html

Class Attributes:
  • synchronized : false
  •  
  • accessors : false
  •  
  • persistent : false
  •  
    Constructor Summary
    init(any f)
          Constructor.
    Method Summary
    any andThen(any after)
    any apply(any target)
         Functional interface for the apply functionional interface.
    any compose(any before)
    any identity()
     
    Methods inherited from class lucee.Component
    None

    Constructor Detail

    init

    public init(any f)

    Constructor

    Parameters:
    f - a function to be applied to to the previous element to produce a new element

    Method Detail

    andThen

    public any andThen(any after)

    Parameters:
    after

    apply

    public any apply(any target)

    Functional interface for the apply functionional interface See https://docs.oracle.com/javase/8/docs/api/java/util/function/Function.html#apply-T-

    Parameters:
    target

    compose

    public any compose(any before)

    Parameters:
    before

    identity

    public any identity()