Interface Creator<T>

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface Creator<T>
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

    Modifier and Type
    Method
    Description
    Return a fresh instance
  • Method Details

    • create

      T create()
      Return a fresh instance