public class Result<T>
extends java.lang.Object
BiFunction.
The Result object can then contain a pointer to any instance, which can be shared with lamda calls
and across other objects (i.e. DecisionBook and Decision objects)| Constructor and Description |
|---|
Result() |
| Modifier and Type | Method and Description |
|---|---|
T |
getValue()
The method getValue() returns the object contained in the Result object.
|
void |
setValue(T value)
The method setValue() sets the object to be contained in the Result object.
|
public T getValue()
public void setValue(T value)
value - the object to be stored in the Result object