Class InstanceImpl<T>
- java.lang.Object
-
- org.jboss.weld.bean.builtin.AbstractFacade<T,Instance<T>>
-
- org.jboss.weld.bean.builtin.InstanceImpl<T>
-
- Type Parameters:
T-
- All Implemented Interfaces:
Serializable,Iterable<T>,Instance<T>,Provider<T>,WeldInstance<T>
public class InstanceImpl<T> extends AbstractFacade<T,Instance<T>> implements WeldInstance<T>, Serializable
Helper implementation for Instance for getting instances- Author:
- Gavin King
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.jboss.weld.bean.builtin.AbstractFacade
AbstractFacade.AbstractFacadeSerializationProxy<T,X>
-
Nested classes/interfaces inherited from interface org.jboss.weld.inject.WeldInstance
WeldInstance.Handler<T>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddestroy(T instance)When called, the container destroys the instance if the active context object for the scope type of the bean supports destroying bean instances.Tget()Provides a fully-constructed and injected instance ofT.WeldInstance.Handler<T>getHandler()Obtains an initialized contextual reference handler for the bean that has the required type and required qualifiers and is eligible for injection.Comparator<WeldInstance.Handler<?>>getPriorityComparator()The returned comparator sorts handlers by priority in descending order.Iterable<WeldInstance.Handler<T>>handlers()Allows to iterate over contextual reference handlers for all the beans that have the required type and required qualifiers and are eligible for injection.booleanisAmbiguous()Determines if there is more than one bean that matches the required type and qualifiers and is eligible for injection into the class into which the parent Instance was injected.booleanisResolvable()Determines if there is exactly one bean that matches the required type and qualifiers and is eligible for injection into the class into which the parent Instance was injected.booleanisUnsatisfied()Determines if there is no bean that matches the required type and qualifiers and is eligible for injection into the class into which the parent Instance was injected.Iterator<T>iterator()static <I> Instance<I>of(InjectionPoint injectionPoint, CreationalContext<I> creationalContext, BeanManagerImpl beanManager)WeldInstance<T>select(Annotation... qualifiers)Obtains a child Instance for the given additional required qualifiers.<U extends T>
WeldInstance<U>select(Class<U> subtype, Annotation... qualifiers)Obtains a child Instance for the given required type and additional required qualifiers.<X> WeldInstance<X>select(Type subtype, Annotation... qualifiers)Obtains a childInstancefor the given required type and additional required qualifiers.<U extends T>
WeldInstance<U>select(TypeLiteral<U> subtype, Annotation... qualifiers)Obtains a child Instance for the given required type and additional required qualifiers.StringtoString()Gets a string representation-
Methods inherited from class org.jboss.weld.bean.builtin.AbstractFacade
equals, getBeanManager, getCreationalContext, getFacadeType, getInjectionPoint, getQualifiers, getType, hashCode
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface org.jboss.weld.inject.WeldInstance
handlersStream
-
-
-
-
Method Detail
-
of
public static <I> Instance<I> of(InjectionPoint injectionPoint, CreationalContext<I> creationalContext, BeanManagerImpl beanManager)
-
get
public T get()
Description copied from interface:ProviderProvides a fully-constructed and injected instance ofT.
-
toString
public String toString()
Gets a string representation
-
isAmbiguous
public boolean isAmbiguous()
Description copied from interface:InstanceDetermines if there is more than one bean that matches the required type and qualifiers and is eligible for injection into the class into which the parent Instance was injected.
- Specified by:
isAmbiguousin interfaceInstance<T>- Returns:
- true if there is more than one bean that matches the required type and qualifiers and is eligible for injection into the class into which the parent Instance was injected, or false otherwise.
-
isUnsatisfied
public boolean isUnsatisfied()
Description copied from interface:InstanceDetermines if there is no bean that matches the required type and qualifiers and is eligible for injection into the class into which the parent Instance was injected.
- Specified by:
isUnsatisfiedin interfaceInstance<T>- Returns:
- true if there is no bean that matches the required type and qualifiers and is eligible for injection into the class into which the parent Instance was injected, or false otherwise.
-
select
public WeldInstance<T> select(Annotation... qualifiers)
Description copied from interface:InstanceObtains a child Instance for the given additional required qualifiers.
-
select
public <U extends T> WeldInstance<U> select(Class<U> subtype, Annotation... qualifiers)
Description copied from interface:InstanceObtains a child Instance for the given required type and additional required qualifiers.
-
select
public <U extends T> WeldInstance<U> select(TypeLiteral<U> subtype, Annotation... qualifiers)
Description copied from interface:InstanceObtains a child Instance for the given required type and additional required qualifiers.
- Specified by:
selectin interfaceInstance<T>- Specified by:
selectin interfaceWeldInstance<T>- Type Parameters:
U- the required type- Parameters:
subtype- aTypeLiteralrepresenting the required typequalifiers- the additional required qualifiers- Returns:
- the child Instance
-
select
public <X> WeldInstance<X> select(Type subtype, Annotation... qualifiers)
Description copied from interface:WeldInstanceObtains a child
Instancefor the given required type and additional required qualifiers. Must be invoked onInstance<T>where T isObject.- Specified by:
selectin interfaceWeldInstance<T>- Type Parameters:
X- the required type- Parameters:
subtype- aTyperepresenting the required typequalifiers- the additional required qualifiers- Returns:
- the child
Instance
-
destroy
public void destroy(T instance)
Description copied from interface:InstanceWhen called, the container destroys the instance if the active context object for the scope type of the bean supports destroying bean instances. All normal scoped built-in contexts support destroying bean instances.
The instance passed should either be a dependent scoped bean instance obtained from the same
Instanceobject, or the client proxy for a normal scoped bean instance.
-
getHandler
public WeldInstance.Handler<T> getHandler()
Description copied from interface:WeldInstanceObtains an initialized contextual reference handler for the bean that has the required type and required qualifiers and is eligible for injection.The contextual reference is obtained lazily, i.e. when first needed.
- Specified by:
getHandlerin interfaceWeldInstance<T>- Returns:
- a new handler
-
isResolvable
public boolean isResolvable()
Description copied from interface:InstanceDetermines if there is exactly one bean that matches the required type and qualifiers and is eligible for injection into the class into which the parent Instance was injected.
- Specified by:
isResolvablein interfaceInstance<T>- Returns:
- true if there is exactly one bean that matches the required type and qualifiers and is eligible for injection into the class into which the parent Instance was injected, or false otherwise.
-
handlers
public Iterable<WeldInstance.Handler<T>> handlers()
Description copied from interface:WeldInstanceAllows to iterate over contextual reference handlers for all the beans that have the required type and required qualifiers and are eligible for injection.Note that the returned
Iterableis stateless and so eachIterable.iterator()produces a new set of handlers.- Specified by:
handlersin interfaceWeldInstance<T>- Returns:
- a new iterable
-
getPriorityComparator
public Comparator<WeldInstance.Handler<?>> getPriorityComparator()
Description copied from interface:WeldInstanceThe returned comparator sorts handlers by priority in descending order.- A class-based bean whose annotated type has
javax.annotation.Priorityhas the priority of valuejavax.annotation.Priority#value() - A custom bean which implements
Prioritizedhas the priority of valuePrioritized.getPriority() - Any other bean has the priority of value 0
- Specified by:
getPriorityComparatorin interfaceWeldInstance<T>- Returns:
- a comparator instance
- A class-based bean whose annotated type has
-
-