Package com.google.inject.util
Class Providers
- java.lang.Object
-
- com.google.inject.util.Providers
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> Provider<T>
guicify(javax.inject.Provider<T> provider)
Returns a Guice-friendlycom.google.inject.Provider
for the given JSR-330javax.inject.Provider
.static <T> Provider<T>
of(T instance)
Returns a provider which always providesinstance
.
-
-
-
Method Detail
-
of
public static <T> Provider<T> of(T instance)
Returns a provider which always providesinstance
. This should not be necessary to use in your application, but is helpful for several types of unit tests.- Parameters:
instance
- the instance that should always be provided. This is also permitted to be null, to enable aggressive testing, although in real life a Guice-supplied Provider will never return null.
-
guicify
public static <T> Provider<T> guicify(javax.inject.Provider<T> provider)
Returns a Guice-friendlycom.google.inject.Provider
for the given JSR-330javax.inject.Provider
. The converse method is unnecessary, since Guice providers directly implement the JSR-330 interface.- Since:
- 3.0
-
-