java.lang.reflect.AnnotatedElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dragome-js-jre Show documentation
Show all versions of dragome-js-jre Show documentation
Dragome SDK module: js-jre
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package java.lang.reflect;
import java.lang.annotation.Annotation;
/**
*
* An interface implemented an annotated element to enable reflective access to
* annotation information.
*
*
* @since 1.5
*/
public interface AnnotatedElement
{
/**
*
* Gets the {@link Annotation} for this element for the annotation type
* passed, if it exists.
*
*
* @param annotationType The Class instance of the annotation to search for.
* @return The {@link Annotation} for this element or null
.
* @throws NullPointerException if annotationType
is
* null
.
*/
T getAnnotation(Class annotationType);
/**
*
* Gets all {@link Annotation}s for this element.
*
*
* @return An array of {@link Annotation}s, which may be empty, but never
* null
.
*/
Annotation[] getAnnotations();
/**
*
* Gets all {@link Annotation}s that are explicitly declared by this
* element (not inherited).
*
*
* @return An array of {@link Annotation}s, which may be empty, but never
* null
.
*/
Annotation[] getDeclaredAnnotations();
/**
*
* Determines if this element has an annotation for the annotation type
* passed.
*
*
* @param annotationType The class instance of the annotation to search for.
* @return true
if the annotation exists, otherwise
* false
.
* @throws NullPointerException if annotationType
is
* null
.
*/
boolean isAnnotationPresent(Class extends Annotation> annotationType);
}