public interface ConversationalEvent<T>
Modifier and Type | Method and Description |
---|---|
ConversationalEvent<T> |
select(Annotation... qualifiers)
Obtains a child Event for the given additional
required qualifiers.
|
<U extends T> |
select(Class<U> subtype,
Annotation... qualifiers)
Obtains a child Event for the given required type and
additional required qualifiers.
|
<U extends T> |
select(javax.enterprise.util.TypeLiteral<U> subtype,
Annotation... qualifiers)
Obtains a child Event for the given required type and
additional required qualifiers.
|
ConversationalEvent<T> select(Annotation... qualifiers)
Obtains a child Event for the given additional required qualifiers.
qualifiers
- the additional specified qualifiersIllegalArgumentException
- if passed two instances of the
same qualifier type, or an instance of an annotation that is not
a qualifier type<U extends T> ConversationalEvent<U> select(Class<U> subtype, Annotation... qualifiers)
Obtains a child Event for the given required type and additional required qualifiers.
U
- the specified typesubtype
- a Class
representing the specified typequalifiers
- the additional specified qualifiersIllegalArgumentException
- if passed two instances of the
same qualifier type, or an instance of an annotation that is not
a qualifier type<U extends T> ConversationalEvent<U> select(javax.enterprise.util.TypeLiteral<U> subtype, Annotation... qualifiers)
Obtains a child Event for the given required type and additional required qualifiers.
U
- the specified typesubtype
- a TypeLiteral
representing the specified typequalifiers
- the additional specified qualifiersIllegalArgumentException
- if passed two instances of the
same qualifier type, or an instance of an annotation that is not
a qualifier typeCopyright © 2013-2015 JBoss, a division of Red Hat. All Rights Reserved.