public final class FindAnnotation
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
private static java.lang.Class[] |
findJaxRSAnnotations_TYPE |
private static java.lang.Class<? extends java.lang.annotation.Annotation>[] |
JAXRS_ANNOTATIONS |
Modifier | Constructor and Description |
---|---|
private |
FindAnnotation() |
Modifier and Type | Method and Description |
---|---|
static <T> T |
findAnnotation(java.lang.annotation.Annotation[] searchList,
java.lang.Class<T> annotation)
FIXME Comment this
|
static <T extends java.lang.annotation.Annotation> |
findAnnotation(java.lang.Class<?> type,
java.lang.annotation.Annotation[] annotations,
java.lang.Class<T> annotation)
Look for an annotation in a list of annotations.
|
static java.lang.Class<? extends java.lang.annotation.Annotation>[] |
findJaxRSAnnotations(java.lang.annotation.Annotation[] searchList) |
static java.lang.annotation.Annotation[] |
getResourcesAnnotations(java.lang.reflect.Method method)
Returns an array of annotations the specified method of
a resource class.
|
private static final java.lang.Class<? extends java.lang.annotation.Annotation>[] JAXRS_ANNOTATIONS
private static final java.lang.Class[] findJaxRSAnnotations_TYPE
public static <T> T findAnnotation(java.lang.annotation.Annotation[] searchList, java.lang.Class<T> annotation)
T
- searchList
- annotation
- public static java.lang.Class<? extends java.lang.annotation.Annotation>[] findJaxRSAnnotations(java.lang.annotation.Annotation[] searchList)
public static java.lang.annotation.Annotation[] getResourcesAnnotations(java.lang.reflect.Method method)
method
- public static <T extends java.lang.annotation.Annotation> T findAnnotation(java.lang.Class<?> type, java.lang.annotation.Annotation[] annotations, java.lang.Class<T> annotation)
type
- annotations
- annnotation
-