Interface IValue<T>
- 
- All Known Implementing Classes:
 Value
public interface IValue<T>An extremely simple interface that simple allows for "late" retrieval/calculation of a value. Inspired by Wicket's IModel interface. Also similar to java.lang.ref.Reference, but without all of the special GC handling. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tget() 
 - 
 
- 
- 
Method Detail
- 
get
T get()
 
 - 
 
 -