From a716a7a53f85a6901128896da508d31c172011b4 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Mon, 11 Apr 2016 17:08:54 -0400 Subject: Initial commit of experimental data rewrite --- .../java/bjc/utils/data/experimental/IHolder.java | 85 ++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 BJC-Utils2/src/main/java/bjc/utils/data/experimental/IHolder.java (limited to 'BJC-Utils2/src/main/java/bjc/utils/data/experimental/IHolder.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/data/experimental/IHolder.java b/BJC-Utils2/src/main/java/bjc/utils/data/experimental/IHolder.java new file mode 100644 index 0000000..2767897 --- /dev/null +++ b/BJC-Utils2/src/main/java/bjc/utils/data/experimental/IHolder.java @@ -0,0 +1,85 @@ +package bjc.utils.data.experimental; + +import java.util.function.Consumer; +import java.util.function.Function; +import java.util.function.UnaryOperator; + +/** + * A holder of a single value. + * + * @author ben + * + * @param + * The type of value held + */ +public interface IHolder { + /** + * Bind a function across the value in this container + * @param The type of value in this container + * @param binder The function to bind to the value + * @return A holder from binding the value + */ + public IHolder bind( + Function> binder); + + /** + * Apply an action to the value + * + * @param action + * The action to apply to the value + */ + public default void doWith(Consumer action) { + transform((value) -> { + action.accept(value); + + return value; + }); + } + + /** + * Get the value contained in this holder without changing it. + * + * @return The value held in this holder + */ + public default ContainedType getValue() { + return unwrap((value) -> value); + } + + /** + * Create a new holder with a mapped version of the value in this + * holder. + * + * Does not change the internal state of this holder + * + * @param + * The type of the mapped value + * @param mapper + * The function to do mapping with + * @return A holder with the mapped value + */ + public IHolder map( + Function mapper); + + /** + * Transform the value held in this holder + * + * @param transformer + * The function to transform the value with + * @return The holder itself, for easy chaining + */ + public IHolder transform( + UnaryOperator transformer); + + /** + * Unwrap the value contained in this holder so that it is no longer + * held + * + * @param + * The type of the unwrapped value + * @param unwrapper + * The function to use to unwrap the value + * @return The unwrapped held value + */ + public UnwrappedType unwrap( + Function unwrapper); +} -- cgit v1.2.3