Uses of Interface
com.vaadin.signals.function.SerializableFunction
Packages that use SerializableFunction
-
Uses of SerializableFunction in com.vaadin.signals.function
Methods in com.vaadin.signals.function that return SerializableFunctionModifier and TypeMethodDescriptionstatic <T> SerializableFunction<T, T> SerializableFunction.identity()Returns a function that always returns its input argument. -
Uses of SerializableFunction in com.vaadin.signals.operations
Methods in com.vaadin.signals.operations with parameters of type SerializableFunctionModifier and TypeMethodDescriptionprotected <R> voidSignalOperation.forwardMappedResult(SignalOperation<R> target, SerializableFunction<T, R> mapper) Forwards the result of this operation to another operation after applying the mapper function.<R> CancelableOperation<R> CancelableOperation.map(SerializableFunction<T, R> mapper) Creates a new cancelable operation that transforms the result value using the given mapper function.<R> SignalOperation<R> SignalOperation.map(SerializableFunction<T, R> mapper) Creates a new operation that transforms the result value using the given mapper function.