default <T> void |
ComponentRegistry.registerComponent(Class<T> componentClass,
ComponentDescriptorModifier... modifiers) |
Registers the component supplier for the specified type.
|
default <T> void |
ComponentRegistry.registerComponent(Class<T> componentClass,
Supplier<T> supplier,
ComponentDescriptorModifier... modifiers) |
Registers the component supplier for the specified type.
|
<T> void |
ComponentRegistry.registerComponent(String componentName,
Class<T> componentClass,
ComponentDescriptorModifier... modifiers) |
Registers the component supplier for the specified type and name.
|
<T> void |
ComponentRegistry.registerComponent(String componentName,
Class<T> componentClass,
Supplier<T> supplier,
ComponentDescriptorModifier... modifiers) |
Registers the component supplier for the specified type and name.
|
<T> void |
DelegatingComponentFactory.registerComponent(String componentName,
Class<T> componentClass,
ComponentDescriptorModifier... modifiers) |
|
<T> void |
DelegatingComponentFactory.registerComponent(String componentName,
Class<T> componentClass,
Supplier<T> supplier,
ComponentDescriptorModifier... modifiers) |
|
default <T> void |
ComponentRegistry.registerSingleton(Class<T> componentClass,
ComponentDescriptorModifier... modifiers) |
Registers a singleton no-arg constructor component supplier for the specified type.
|
default <T> void |
ComponentRegistry.registerSingleton(Class<T> componentClass,
Supplier<T> singleton,
ComponentDescriptorModifier... modifiers) |
Registers the component supplier for the specified type and name.
|
<T> void |
ComponentRegistry.registerSingleton(String componentName,
Class<T> componentClass,
ComponentDescriptorModifier... modifiers) |
Registers a singleton no-arg constructor component supplier for the specified type.
|
<T> void |
ComponentRegistry.registerSingleton(String componentName,
Class<T> componentClass,
Supplier<T> singleton,
ComponentDescriptorModifier... modifiers) |
Registers the component supplier for the specified type and name.
|
<T> void |
DelegatingComponentFactory.registerSingleton(String componentName,
Class<T> componentClass,
ComponentDescriptorModifier... modifiers) |
|
<T> void |
DelegatingComponentFactory.registerSingleton(String componentName,
Class<T> componentClass,
Supplier<T> singleton,
ComponentDescriptorModifier... modifiers) |
|