Uses of Enum Class
org.klojang.invoke.IncludeExclude
Packages that use IncludeExclude
Package
Description
Provides a bean reader and bean writer based on method handles and a minimal
amount of reflection.
-
Uses of IncludeExclude in org.klojang.invoke
Subclasses with type arguments of type IncludeExclude in org.klojang.invokeModifier and TypeClassDescriptionenum
Used to indicate whether you want to allow or disallow properties from being read by aBeanReader
or written by aBeanWriter
.Methods in org.klojang.invoke that return IncludeExcludeModifier and TypeMethodDescriptionstatic IncludeExclude
Returns the enum constant of this class with the specified name.static IncludeExclude[]
IncludeExclude.values()
Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.klojang.invoke with parameters of type IncludeExcludeModifierConstructorDescriptionBeanReader
(Class<T> beanClass, boolean strictNaming, BeanValueTransformer<T> transformer, IncludeExclude includeExclude, String... properties) Creates aBeanReader
for the specified class.BeanReader
(Class<T> beanClass, boolean strictNaming, IncludeExclude includeExclude, String... properties) Creates aBeanReader
for the specified class.BeanReader
(Class<T> beanClass, BeanValueTransformer<T> transformer, IncludeExclude includeExclude, String... properties) Creates aBeanReader
for the specified class.BeanReader
(Class<T> beanClass, IncludeExclude includeExclude, String... properties) Creates aBeanReader
for the specified class.BeanWriter
(Class<T> beanClass, BeanValueTransformer<T> transformer, IncludeExclude includeExclude, String... properties) Creates aBeanWriter
for the specified class.BeanWriter
(Class<T> beanClass, IncludeExclude includeExclude, String... properties) Creates aBeanWriter
for the specified class.