Uses of Interface
org.klojang.invoke.BeanValueTransformer
Packages that use BeanValueTransformer
Package
Description
Provides a bean reader and bean writer based on method handles and a minimal
amount of reflection.
-
Uses of BeanValueTransformer in org.klojang.invoke
Methods in org.klojang.invoke that return BeanValueTransformerModifier and TypeMethodDescriptionstatic <T> BeanValueTransformer<T> BeanValueTransformer.identity()The no-op transformer.Methods in org.klojang.invoke with parameters of type BeanValueTransformerModifier and TypeMethodDescriptionBeanReaderBuilder.withTransformer(BeanValueTransformer<T> transformer) Constructors in org.klojang.invoke with parameters of type BeanValueTransformerModifierConstructorDescriptionBeanReader(Class<T> beanClass, boolean strictNaming, BeanValueTransformer<T> transformer, IncludeExclude includeExclude, String... properties) Creates aBeanReaderfor the specified properties of the specified class.BeanWriter(Class<T> beanClass, BeanValueTransformer<T> transformer, String... properties) Creates aBeanWriterfor the specified class.BeanWriter(Class<T> beanClass, BeanValueTransformer<T> transformer, IncludeExclude includeExclude, String... properties) Creates aBeanWriterfor the specified class.