Package org.apache.tapestry5.func
Interface LazyValue<T>
-
- All Known Implementing Classes:
LazyZipValue
public interface LazyValue<T>
A function that returns a value, allowing the computation of that value to be deferred as late as possible.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
get()
Compute and return the value.
-