com.google.common.base
Interface Supplier<T>

Type Parameters:
T - the type of object being supplied

public interface Supplier<T>

A class that can supply objects of a single type. Semantically, this could be a Factory, Generator, Builder, Closure, or something else entirely. No guarantees are implied by this interface.


Method Summary
 T get()
           
 

Method Detail

get

T get()