Uses of Class
org.apache.juneau.commons.reflect.Property.Builder
Packages that use Property.Builder
Package
Description
Comprehensive reflection utilities for working with classes, methods, fields, constructors,
and annotations in a more convenient and type-safe way than the standard Java reflection APIs.
-
Uses of Property.Builder in org.apache.juneau.commons.reflect
Methods in org.apache.juneau.commons.reflect that return Property.BuilderModifier and TypeMethodDescriptionstatic <T,V> Property.Builder<T, V> Property.create()Creates a new builder for constructing a property.Sets both getter and setter from aFieldInfo.Property.Builder.getter(ThrowingFunction<T, V> producer) Sets the producer (getter) using a function.Property.Builder.getter(MethodInfo method) Sets the producer (getter) from aMethodInfo.Property.Builder.setter(ThrowingConsumer2<T, V> consumer) Sets the consumer (setter) using a throwing consumer.Property.Builder.setter(MethodInfo method) Sets the consumer (setter) from aMethodInfo.