Uses of Interface
no.digipost.util.Assignment
Packages that use Assignment
-
Uses of Assignment in no.digipost.concurrent
Classes in no.digipost.concurrent that implement AssignmentModifier and TypeClassDescriptionfinal classA 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 AssignmentModifier and TypeClassDescriptionfinal classChainableAssignment<V,C> AnAssignmentwith the added ability to chain several assignments withChainableAssignment.is(Object).Methods in no.digipost.util that return AssignmentModifier and TypeMethodDescriptionstatic <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