All Types

me.tatarka.valueprocessor.ConstructionSource

How a Value can be constructed. Either a constructor, factory method, or builder.

me.tatarka.valueprocessor.ElementException
me.tatarka.valueprocessor.Properties

The properties of the value object. You can either iterator over these directly (ex: for (Property<?> property: properties)) or iterate over a specific sub-set (ex: for (Property.Field field : properties.getFields())).

me.tatarka.valueprocessor.Property

A value object's property. This can either be a public field, getter, or a constructor param.

me.tatarka.valueprocessor.Value

Represent a value object with some properties. You can obtain one from one of the ValueCreator methods.

me.tatarka.valueprocessor.ValueCreator

Creates instances of Value from various starting elements.