Uses of Class
org.anchoranalysis.bean.AnchorBean
| Package | Description |
|---|---|
| org.anchoranalysis.bean |
Defining, loading, initializing Anchor Beans.
|
| org.anchoranalysis.bean.define |
Define and related-classes. |
| org.anchoranalysis.bean.define.adder |
DefineAdder and related-classes. |
| org.anchoranalysis.bean.initializable |
Initializing beans with particular parameters, including recursively.
|
| org.anchoranalysis.bean.permute |
Applying permutations to a bean's fields.
|
| org.anchoranalysis.bean.permute.assign |
Imposes a permutation value on one or more properties of a bean.
|
| org.anchoranalysis.bean.permute.property |
Applying permutations to the properties of a bean.
|
| org.anchoranalysis.bean.primitive |
Beans that implement collections of primitive element types, as well as
String. |
| org.anchoranalysis.bean.xml.factory |
Custom factories for loading beans in custom ways from XML.
|
-
Uses of AnchorBean in org.anchoranalysis.bean
Classes in org.anchoranalysis.bean with type parameters of type AnchorBean Modifier and Type Class Description classNamedBean<T extends AnchorBean<?>>A bean with an associated textual name.Subclasses of AnchorBean in org.anchoranalysis.bean Modifier and Type Class Description classNamedBean<T extends AnchorBean<?>>A bean with an associated textual name.classNullParametersBean<T>A base class for beans that require initialization but the initializations needs no parameters.Methods in org.anchoranalysis.bean with type parameters of type AnchorBean Modifier and Type Method Description <T extends AnchorBean<?>>
List<T>AnchorBean. findFieldsOfClass(Class<?> match)Finds all bean-fields that are instances of a certain class.Methods in org.anchoranalysis.bean with parameters of type AnchorBean Modifier and Type Method Description static Optional<Object>FieldAccessor. fieldFromBean(AnchorBean<?> bean, Field field)Retrieves the value of aFieldfrom aAnchorBean. -
Uses of AnchorBean in org.anchoranalysis.bean.define
Subclasses of AnchorBean in org.anchoranalysis.bean.define Modifier and Type Class Description classDefineA bean where the definitions of many differentNamedBeans can be specified.Methods in org.anchoranalysis.bean.define with type parameters of type AnchorBean Modifier and Type Method Description <T extends AnchorBean<?>>
voidDefine. addAll(List<NamedBean<T>> list)Adds all the named-beans from source to the current map.<T extends AnchorBean<?>>
List<NamedBean<T>>Define. listFor(Class<?> groupingRoot)Retrieves the list of elements associated with a grouping-root. -
Uses of AnchorBean in org.anchoranalysis.bean.define.adder
Subclasses of AnchorBean in org.anchoranalysis.bean.define.adder Modifier and Type Class Description classConcatenateConcatenates a list of adders.classDefineAdderBeanBase class forAnchorBeans that can add items to aDefine.classDefineAdderWithPrefixBeanLikeDefineAdderBeanbut adds a prefix to the name of beans when adding.classFromXMLListAdds a list of Named-Items define in a XML file in the current directory.Methods in org.anchoranalysis.bean.define.adder with parameters of type AnchorBean Modifier and Type Method Description protected voidDefineAdderWithPrefixBean. addWithName(Define define, String name, AnchorBean<?> item)Add an item todefinewith a name being added. -
Uses of AnchorBean in org.anchoranalysis.bean.initializable
Subclasses of AnchorBean in org.anchoranalysis.bean.initializable Modifier and Type Class Description classInitializableBean<B,P extends BeanInitialization>A bean that must be initialized with some parameters before being used. -
Uses of AnchorBean in org.anchoranalysis.bean.permute
Classes in org.anchoranalysis.bean.permute with type parameters of type AnchorBean Modifier and Type Class Description classPermutedCopyCreator<T extends AnchorBean<T>>Applies aPermutePropertyto a bean to create new duplicated beans each with different permuted values. -
Uses of AnchorBean in org.anchoranalysis.bean.permute.assign
Methods in org.anchoranalysis.bean.permute.assign with parameters of type AnchorBean Modifier and Type Method Description voidPermutationAssigner. assignValue(AnchorBean<?> bean, Object value)Assignsvalueto one or more properties inbean.static PermutationAssignerPermutationAssignerFactory. createForSingle(AnchorBean<?> bean, String propertyPath)Creates an assigner for one or more properties, as identified bypropertyPath. -
Uses of AnchorBean in org.anchoranalysis.bean.permute.property
Subclasses of AnchorBean in org.anchoranalysis.bean.permute.property Modifier and Type Class Description classPermuteProperty<T>Changes properties of anAnchorBeanto one of a range of possible values.classPermutePropertyDoubleSetAssigns each element from a set of doubles to a particular property of a bean.classPermutePropertySequence<T>Base class for assigning a sequence of numbers to a particular property of a bean.classPermutePropertySequenceDoubleAssigns an arithmetic sequence of doubles, derived by diving an integer sequence by a divider.classPermutePropertySequenceIntegerAn arithmetic sequence of integers, each directly assigned to a property during permutation.classPermutePropertyStringSetAssigns each element from a set of strings to a particular property of a bean.classSequenceIntegerA sequence of integers.Methods in org.anchoranalysis.bean.permute.property with parameters of type AnchorBean Modifier and Type Method Description PermutationAssignerPermuteProperty. createSetter(AnchorBean<?> bean)Creates aPermutationAssignerwhich allows the particular property to be changed. -
Uses of AnchorBean in org.anchoranalysis.bean.primitive
Subclasses of AnchorBean in org.anchoranalysis.bean.primitive Modifier and Type Class Description classDoubleListA bean defining a list ofDoubles.classDoubleSetA bean defining a set ofDoubles.classIntegerListA bean defining a list ofIntegers.classIntegerSetA bean defining a set ofIntegers.classStringListA bean defining a list ofStrings.classStringSetA bean defining a set ofStrings. -
Uses of AnchorBean in org.anchoranalysis.bean.xml.factory
Classes in org.anchoranalysis.bean.xml.factory with type parameters of type AnchorBean Modifier and Type Class Description classReplacePropertyBeanFactory<T extends AnchorBean<T>>Replaces a property (an XML element of attribute) on a bean before loading it.Methods in org.anchoranalysis.bean.xml.factory with parameters of type AnchorBean Modifier and Type Method Description static Optional<Path>BeanPathCalculator. pathFromBean(AnchorBean<?> bean, String relativePath)Calculates a path from the current bean.