T
- The things to create.public interface Factory<T>
Modifier and Type | Method and Description |
---|---|
JavaSet<? extends T> |
emptyCollectionOf()
A suggested Java Collection for gathering up some such items.
|
T[] |
parse(String... many) |
T |
parse(String s)
Create a new T.
|
<U extends T> |
remake(T t) |
String |
toString(T t)
Convert a T into a String
|