Package ch.kk7.confij.binding
Class BindingResult<T>
- java.lang.Object
-
- ch.kk7.confij.binding.BindingResult<T>
-
- Type Parameters:
T-
public class BindingResult<T> extends java.lang.ObjectThe outcome when buiding the final configuration object, but still keep it linked to the oldConfijNodeand its child-results. Facilitates post-processing, such as with aConfijValidator.
-
-
Constructor Summary
Constructors Constructor Description BindingResult()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <X> BindingResult<X>of(X value, ConfijNode node, java.util.List<BindingResult<?>> children)static <X> BindingResult<X>ofLeaf(X value, ConfijNode node)
-
-
-
Method Detail
-
ofLeaf
public static <X> BindingResult<X> ofLeaf(X value, ConfijNode node)
-
of
public static <X> BindingResult<X> of(X value, ConfijNode node, java.util.List<BindingResult<?>> children)
-
-