Uses of Interface
no.digipost.util.Assignment
-
Packages that use Assignment Package Description no.digipost.concurrent no.digipost.util -
-
Uses of Assignment in no.digipost.concurrent
Classes in no.digipost.concurrent that implement Assignment Modifier and Type Class Description classOneTimeAssignment<V>A reference which may or may not be assigned a value, with the added constraint that it can only be assigned once. -
Uses of Assignment in no.digipost.util
Classes in no.digipost.util that implement Assignment Modifier and Type Class Description classChainableAssignment<V,C>AnAssignmentwith the added ability to chain several assignments withChainableAssignment.is(Object).Methods in no.digipost.util that return Assignment Modifier and Type Method Description static <V> Assignment<V>Assignment. from(AtomicReference<V> reference)Create a newAssignmentwhich uses anAtomicReferenceto hold the assigned value.static <V,S>
Assignment<V>Assignment. from(S container, Function<? super S,V> getter, BiConsumer<? super S,? super V> setter)Create a newAssignment, which assigns to and retrieves from an arbitrary container object.Constructors in no.digipost.util with parameters of type Assignment Constructor Description ChainableAssignment(Assignment<V> assignment, C chainReturnObject)
-