<T> T |
ComponentRegistry.lookup(Class<T> type,
String role,
String roleHint) |
|
<T> T |
ComponentRegistry.lookup(ComponentDescriptor<T> componentDescriptor) |
|
<T> T |
DefaultComponentRegistry.lookup(Class<T> type,
String role,
String roleHint) |
|
<T> T |
DefaultComponentRegistry.lookup(ComponentDescriptor<T> componentDescriptor) |
|
<T> T |
DefaultPlexusContainer.lookup(Class<T> type) |
|
<T> T |
DefaultPlexusContainer.lookup(Class<T> type,
String roleHint) |
|
<T> T |
DefaultPlexusContainer.lookup(Class<T> type,
String role,
String roleHint) |
|
Object |
DefaultPlexusContainer.lookup(String role) |
|
Object |
DefaultPlexusContainer.lookup(String role,
String roleHint) |
|
<T> T |
DefaultPlexusContainer.lookup(ComponentDescriptor<T> componentDescriptor) |
|
<T> T |
PlexusContainer.lookup(Class<T> type) |
Looks up and returns a component object with the given unique key or role.
|
<T> T |
PlexusContainer.lookup(Class<T> type,
String roleHint) |
Looks up and returns a component object with the given unique role/role-hint combination.
|
<T> T |
PlexusContainer.lookup(Class<T> type,
String role,
String roleHint) |
Looks up and returns a component object with the given unique role/role-hint combination.
|
Object |
PlexusContainer.lookup(String role) |
Looks up and returns a component object with the given unique key or role.
|
Object |
PlexusContainer.lookup(String role,
String roleHint) |
Looks up and returns a component object with the given unique role/role-hint combination.
|
<T> T |
PlexusContainer.lookup(ComponentDescriptor<T> componentDescriptor) |
Looks up and returns a component object matching the given component descriptor.
|
<T> List<T> |
ComponentRegistry.lookupList(Class<T> type,
String role,
List<String> hints) |
|
<T> List<T> |
DefaultComponentRegistry.lookupList(Class<T> type,
String role,
List<String> roleHints) |
|
<T> List<T> |
DefaultPlexusContainer.lookupList(Class<T> type) |
|
<T> List<T> |
DefaultPlexusContainer.lookupList(Class<T> type,
List<String> roleHints) |
|
List<Object> |
DefaultPlexusContainer.lookupList(String role) |
|
List<Object> |
DefaultPlexusContainer.lookupList(String role,
List<String> roleHints) |
|
<T> List<T> |
PlexusContainer.lookupList(Class<T> type) |
Looks up and returns a List of component objects with the given role.
|
<T> List<T> |
PlexusContainer.lookupList(Class<T> type,
List<String> roleHints) |
Looks up and returns a List of component objects with the given role.
|
List<Object> |
PlexusContainer.lookupList(String role) |
Looks up and returns a List of component objects with the given role.
|
List<Object> |
PlexusContainer.lookupList(String role,
List<String> roleHints) |
Looks up and returns a List of component objects with the given role.
|
<T> Map<String,T> |
ComponentRegistry.lookupMap(Class<T> type,
String role,
List<String> hints) |
|
<T> Map<String,T> |
DefaultComponentRegistry.lookupMap(Class<T> type,
String role,
List<String> roleHints) |
|
<T> Map<String,T> |
DefaultPlexusContainer.lookupMap(Class<T> type) |
|
<T> Map<String,T> |
DefaultPlexusContainer.lookupMap(Class<T> type,
List<String> roleHints) |
|
Map<String,Object> |
DefaultPlexusContainer.lookupMap(String role) |
|
Map<String,Object> |
DefaultPlexusContainer.lookupMap(String role,
List<String> roleHints) |
|
<T> Map<String,T> |
PlexusContainer.lookupMap(Class<T> type) |
Looks up and returns a Map of component objects with the given role, keyed by all available role-hints.
|
<T> Map<String,T> |
PlexusContainer.lookupMap(Class<T> type,
List<String> roleHints) |
Looks up and returns a Map of component objects with the given role, keyed by all available role-hints.
|
Map<String,Object> |
PlexusContainer.lookupMap(String role) |
Looks up and returns a Map of component objects with the given role, keyed by all available role-hints.
|
Map<String,Object> |
PlexusContainer.lookupMap(String role,
List<String> roleHints) |
Looks up and returns a Map of component objects with the given role, keyed by all available role-hints.
|