Uses of Class
org.apache.juneau.reflect.AnnotationList
Packages that use AnnotationList
- 
Uses of AnnotationList in org.apache.juneauMethods in org.apache.juneau with parameters of type AnnotationListModifier and TypeMethodDescriptionAnnotationWorkList.add(AnnotationList annotations) Adds entries for the specified annotations to this work list.static AnnotationWorkListAnnotationWorkList.of(AnnotationList annotations) Static creator.static AnnotationWorkListAnnotationWorkList.of(VarResolverSession vrs, AnnotationList annotations) Static creator.
- 
Uses of AnnotationList in org.apache.juneau.reflectMethods in org.apache.juneau.reflect that return AnnotationListModifier and TypeMethodDescription<A extends Annotation>
 AnnotationListAnnotationList.forEach(Class<A> type, Predicate<AnnotationInfo<A>> filter, Consumer<AnnotationInfo<A>> action) Performs an action on all matching annotations in this list.<A extends Annotation>
 AnnotationListAnnotationList.forEach(Predicate<AnnotationInfo<?>> filter, Consumer<AnnotationInfo<?>> action) Performs an action on all matching annotations in this list.<T> AnnotationListAnnotationList.forEachValue(Class<T> type, String name, Predicate<T> filter, Consumer<T> action) Performs an action on the specified matching values from all annotations in this list.ClassInfo.getAnnotationList()Constructs anAnnotationListof all annotations found on this class.ClassInfo.getAnnotationList(Predicate<AnnotationInfo<?>> filter) Constructs anAnnotationListof all matching annotations on this class.MethodInfo.getAnnotationList()Constructs anAnnotationListof all annotations found on this method.MethodInfo.getAnnotationList(Predicate<AnnotationInfo<?>> filter) Constructs anAnnotationListof all matching annotations found on this method.MethodInfo.getAnnotationListMethodOnly(Predicate<AnnotationInfo<?>> filter) Same asMethodInfo.getAnnotationList(Predicate)except only returns annotations defined on methods.AnnotationList.sort()Sort the annotations in this list based on rank.