- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents a creator of things.
Unlike
Supplier, this interface contract requires that the returned object
is a new, fresh instance on each call. i.e. two calls return objects that are
not ==.-
Method Summary
-
Method Details
-
create
T create()Return a fresh instance
-