Class FindAnnotation
java.lang.Object
org.jboss.resteasy.spi.util.FindAnnotation
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> T
findAnnotation
(Annotation[] searchList, Class<T> annotation) Finds annotation.static <T> T
findAnnotation
(Annotation[] searchList, String... annotations) Finds annotation.static <T extends Annotation>
TfindAnnotation
(Class<?> type, Annotation[] annotations, Class<T> annotation) Look for an annotation in a list of annotations.static Class<? extends Annotation>[]
findJaxRSAnnotations
(Annotation[] searchList) static Annotation[]
getResourcesAnnotations
(Method method) Returns an array of annotations the specified method of a resource class.
-
Method Details
-
findAnnotation
Finds annotation.- Type Parameters:
T
- type- Parameters:
searchList
- array of annotationsannotation
- expected annotation class- Returns:
- annotation or null
-
findAnnotation
Finds annotation.- Type Parameters:
T
- type- Parameters:
searchList
- array of annotationsannotations
- expected annotations- Returns:
- annotation or null
-
findJaxRSAnnotations
-
getResourcesAnnotations
Returns an array of annotations the specified method of a resource class.- Parameters:
method
- method- Returns:
- array of annotations
-
findAnnotation
public static <T extends Annotation> T findAnnotation(Class<?> type, Annotation[] annotations, Class<T> annotation) Look for an annotation in a list of annotations. If not there, see if it is on the type provided.- Type Parameters:
T
- type- Parameters:
type
- type classannotations
- array of annotationsannotation
- expected annotation- Returns:
- annotation or null
-