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

com.google.inject.internal.Initializable Maven / Gradle / Ivy

package com.google.inject.internal;

/**
 * Holds a reference that requires initialization to be performed before it can be used.
 */
interface Initializable {

    /**
     * Ensures the reference is initialized, then returns it.
     */
    T get() throws InternalProvisionException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy