Package org.mockito.internal.util
Interface Supplier<T>
-
- Type Parameters:
T
- type of object to provide/create.
public interface Supplier<T>
Abstract provider that can supply (provide/create) objects of given type. Delete when we move to Java 8 and use built-in type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
get()
Provides an instance.
-
-
-
Method Detail
-
get
T get()
Provides an instance.
-
-