All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.internal.util.Supplier Maven / Gradle / Ivy

There is a newer version: 5.12.0
Show newest version
/*
 * Copyright (c) 2017 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.util;

/**
 * Abstract provider that can supply (provide/create) objects of given type.
 *
 * Delete when we move to Java 8 and use built-in type.
 *
 * @param  type of object to provide/create.
 */
public interface Supplier {

    /**
     * Provides an instance.
     */
    T get();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy