public interface PropertyFunction<A,B> extends Function<A,B>, BiConsumer<A,B>
Modifier and Type | Method and Description |
---|---|
default Property<B> |
instantiate(A arg) |
static <A,B> PropertyFunction<A,B> |
of(Function<? super A,? extends B> getter,
BiConsumer<? super A,? super B> setter) |
accept, andThen
static <A,B> PropertyFunction<A,B> of(Function<? super A,? extends B> getter, BiConsumer<? super A,? super B> setter)
see also the complete user documentation .