javolution37.javolution.lang
Interface Reference<T>
-
- All Known Implementing Classes:
- LocalReference, PersistentReference, StackReference
public interface Reference<T>This interface represents an object reference, the reachability level of a reference varies based on the actual reference implementation. Here are the reachability levels for some of Javolution references:
-
PersistentReference: Reachable accross multiple program executions. -
LocalReference: Reachable only within the scope of theLocalContextwhere it has been set. -
StackReference: Reachable only within the scope of thePoolContextwhere it has been created (factory produced).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description Tget()Returns the value this reference referes to.voidset(T value)Sets the value this reference referes to.
-
DMelt 3.0 © DataMelt by jWork.ORG