All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.junit.jupiter.api.extension.AnnotatedElementContext Maven / Gradle / Ivy

There is a newer version: 5.11.3
Show newest version
/*
 * Copyright 2015-2024 the original author or authors.
 *
 * All rights reserved. This program and the accompanying materials are
 * made available under the terms of the Eclipse Public License v2.0 which
 * accompanies this distribution and is available at
 *
 * https://www.eclipse.org/legal/epl-v20.html
 */

package org.junit.jupiter.api.extension;

import static org.apiguardian.api.API.Status.EXPERIMENTAL;

import java.lang.annotation.Annotation;
import java.lang.reflect.AnnotatedElement;
import java.util.List;
import java.util.Optional;

import org.apiguardian.api.API;
import org.junit.platform.commons.support.AnnotationSupport;

/**
 * {@code AnnotatedElementContext} encapsulates the context in which an
 * {@link #getAnnotatedElement() AnnotatedElement} is declared.
 *
 * 

For example, an {@code AnnotatedElementContext} is used in * {@link org.junit.jupiter.api.io.TempDirFactory TempDirFactory} to allow inspecting * the field or parameter the {@link org.junit.jupiter.api.io.TempDir TempDir} * annotation is declared on. * *

This interface is not intended to be implemented by clients. * * @since 5.10 */ @API(status = EXPERIMENTAL, since = "5.10") public interface AnnotatedElementContext { /** * Get the {@link AnnotatedElement} for this context. * *

WARNING

*

When searching for annotations on the annotated element in this context, * favor {@link #isAnnotated(Class)}, {@link #findAnnotation(Class)}, and * {@link #findRepeatableAnnotations(Class)} over methods in the * {@link AnnotatedElement} API due to a bug in {@code javac} on JDK versions prior * to JDK 9. * * @return the annotated element; never {@code null} */ AnnotatedElement getAnnotatedElement(); /** * Determine if an annotation of {@code annotationType} is either * present or meta-present on the {@link AnnotatedElement} for * this context. * *

WARNING

*

Favor the use of this method over directly invoking * {@link AnnotatedElement#isAnnotationPresent(Class)} due to a bug in {@code javac} * on JDK versions prior to JDK 9. * * @param annotationType the annotation type to search for; never {@code null} * @return {@code true} if the annotation is present or meta-present * @see #findAnnotation(Class) * @see #findRepeatableAnnotations(Class) */ default boolean isAnnotated(Class annotationType) { return AnnotationSupport.isAnnotated(getAnnotatedElement(), annotationType); } /** * Find the first annotation of {@code annotationType} that is either * present or meta-present on the {@link AnnotatedElement} for * this context. * *

WARNING

*

Favor the use of this method over directly invoking annotation lookup * methods in the {@link AnnotatedElement} API due to a bug in {@code javac} on JDK * versions prior to JDK 9. * * @param the annotation type * @param annotationType the annotation type to search for; never {@code null} * @return an {@code Optional} containing the annotation; never {@code null} but * potentially empty * @see #isAnnotated(Class) * @see #findRepeatableAnnotations(Class) */ default Optional findAnnotation(Class annotationType) { return AnnotationSupport.findAnnotation(getAnnotatedElement(), annotationType); } /** * Find all repeatable {@linkplain Annotation annotations} of * {@code annotationType} that are either present or * meta-present on the {@link AnnotatedElement} for this context. * *

WARNING

*

Favor the use of this method over directly invoking annotation lookup * methods in the {@link AnnotatedElement} API due to a bug in {@code javac} on JDK * versions prior to JDK 9. * * @param the annotation type * @param annotationType the repeatable annotation type to search for; never * {@code null} * @return the list of all such annotations found; neither {@code null} nor * mutable, but potentially empty * @see #isAnnotated(Class) * @see #findAnnotation(Class) * @see java.lang.annotation.Repeatable */ default List findRepeatableAnnotations(Class annotationType) { return AnnotationSupport.findRepeatableAnnotations(getAnnotatedElement(), annotationType); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy