com.aliasi.util
Interface Factory<E>
- Type Parameters:
E - the type of objects produced by the factory
public interface Factory<E>
A Factory provides a generic interface for object
creation of a specified type. The interface specifies a single
method, create(), which returns an object of the factory's
type.
- Since:
- LingPipe2.0
- Version:
- 3.8
- Author:
- Bob Carpenter
|
Method Summary |
E |
create()
Return an instance created by this factory. |
create
E create()
- Return an instance created by this factory.
- Returns:
- An instance.