Uses of Interface
com.vaadin.flow.function.SerializableFunction
Packages that use SerializableFunction
Package
Description
-
Uses of SerializableFunction in com.vaadin.flow.component
Subinterfaces of SerializableFunction in com.vaadin.flow.componentModifier and TypeInterfaceDescriptioninterfaceItemLabelGeneratorcan be used to customize the string shown to the user for an item.Methods in com.vaadin.flow.component with parameters of type SerializableFunctionModifier and TypeMethodDescriptionHasComponents.bindChildren(Signal<List<S>> list, SerializableFunction<S, Component> childFactory) Binds a listSignalto this component using a child component factory.Constructors in com.vaadin.flow.component with parameters of type SerializableFunctionModifierConstructorDescriptionAbstractSinglePropertyField(String propertyName, T defaultValue, Class<P> elementPropertyType, SerializableFunction<P, T> presentationToModel, SerializableFunction<T, P> modelToPresentation) Creates a new field that uses a property value with the given stateless converters for producing a model value. -
Uses of SerializableFunction in com.vaadin.flow.component.internal
Constructors in com.vaadin.flow.component.internal with parameters of type SerializableFunctionModifierConstructorDescriptionDependencyTreeCache(SerializableFunction<T, Collection<T>> dependencyParser) Creates a dependency cache with the given dependency parser. -
Uses of SerializableFunction in com.vaadin.flow.dom
Methods in com.vaadin.flow.dom with parameters of type SerializableFunctionModifier and TypeMethodDescriptionstatic <T extends @Nullable Object,S extends Signal<T>>
RegistrationElementEffect.bindChildren(Element parentElement, Signal<List<S>> list, SerializableFunction<S, Element> childFactory) Binds a list signal containing child signals to a parent component using a child component factory. -
Uses of SerializableFunction in com.vaadin.flow.function
Subinterfaces of SerializableFunction in com.vaadin.flow.functionModifier and TypeInterfaceDescriptioninterfaceValueProvider<SOURCE,TARGET> A callback interface for providing values from a given source.Methods in com.vaadin.flow.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.flow.internal
Constructors in com.vaadin.flow.internal with parameters of type SerializableFunctionModifierConstructorDescriptionReflectionCache(SerializableFunction<Class<C>, T> valueProvider) Creates a new reflection cache with the given value provider. -
Uses of SerializableFunction in com.vaadin.flow.server.communication
Subinterfaces of SerializableFunction in com.vaadin.flow.server.communicationModifier and TypeInterfaceDescriptioninterfaceFactory that produces instances ofPushConnection. -
Uses of SerializableFunction in com.vaadin.flow.server.dau
Subinterfaces of SerializableFunction in com.vaadin.flow.server.dauModifier and TypeInterfaceDescriptioninterfaceProvides a custom identifier of end-users that, if configured, is used the by Vaadin's license server to count unique daily users for a given subscription. -
Uses of SerializableFunction in com.vaadin.flow.server.webcomponent
Classes in com.vaadin.flow.server.webcomponent that implement SerializableFunctionModifier and TypeClassDescriptionfinal classRetrieves web component tag from aWebComponentExporterFactoryobject. -
Uses of SerializableFunction in com.vaadin.flow.signals.operations
Methods in com.vaadin.flow.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.