Uses of Class
com.google.inject.Stage
-
Packages that use Stage Package Description com.google.inject Google Guice (pronounced "juice") is an ultra-lightweight dependency injection framework.com.google.inject.spi Guice service provider interface -
-
Uses of Stage in com.google.inject
Methods in com.google.inject that return Stage Modifier and Type Method Description protected Stage
AbstractModule. currentStage()
Stage
Binder. currentStage()
Gets the current stage.protected Stage
PrivateModule. currentStage()
static Stage
Stage. valueOf(String name)
Returns the enum constant of this type with the specified name.static Stage[]
Stage. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.inject with parameters of type Stage Modifier and Type Method Description static Injector
Guice. createInjector(Stage stage, Module... modules)
Creates an injector for the given set of modules, in a given development stage.static Injector
Guice. createInjector(Stage stage, Iterable<? extends Module> modules)
Creates an injector for the given set of modules, in a given development stage. -
Uses of Stage in com.google.inject.spi
Methods in com.google.inject.spi with parameters of type Stage Modifier and Type Method Description static List<Element>
Elements. getElements(Stage stage, Module... modules)
Records the elements executed bymodules
.static List<Element>
Elements. getElements(Stage stage, Iterable<? extends Module> modules)
Records the elements executed bymodules
.
-