Package com.tangosol.util
Interface Builder<T>
-
- Type Parameters:
T
- the type of object to realize
public interface Builder<T>
ABuilder
provides a mechanism for realizing a specific class of object as required.This is an abstract representation of a dynamic no-args constructor.
- Author:
- bo 2012.10.25
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
realize()
Realizes an instance of type T.
-
-
-
Method Detail
-
realize
T realize()
Realizes an instance of type T.- Returns:
- a (possibly new) instance of type T
-
-