Uses of Interface
javax.enterprise.inject.Instance

Packages that use Instance
com.caucho.config.inject   
javax.enterprise.inject Java Dependency Injection annotations and exceptions. 
 

Uses of Instance in com.caucho.config.inject
 

Classes in com.caucho.config.inject that implement Instance
 class InstanceImpl<T>
          Factory to create instances of a bean.
 

Methods in com.caucho.config.inject that return Instance
 Instance<T> InstanceImpl.select(java.lang.annotation.Annotation... bindings)
          Restricts the instance given a set of bindings
<U extends T>
Instance<U>
InstanceImpl.select(java.lang.Class<U> subtype, java.lang.annotation.Annotation... bindings)
          Restricts the instance to a subtype and bindings.
<U extends T>
Instance<U>
InstanceImpl.select(TypeLiteral<U> subtype, java.lang.annotation.Annotation... bindings)
          Restricts the instance to a subtype and bindings.
 

Uses of Instance in javax.enterprise.inject
 

Methods in javax.enterprise.inject that return Instance
 Instance<T> Instance.select(java.lang.annotation.Annotation... qualifiers)
          Restricts the instance given a set of qualifiers
<U extends T>
Instance<U>
Instance.select(java.lang.Class<U> subtype, java.lang.annotation.Annotation... qualifiers)
          Restricts the instance to a subtype and bindings.
<U extends T>
Instance<U>
Instance.select(TypeLiteral<U> subtype, java.lang.annotation.Annotation... qualifiers)
          Restricts the instance to a subtype and bindings.