![JAR search and dependency download from the Maven repository](/logo.png)
org.hibernate.reflection.XAnnotatedElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
package org.hibernate.reflection;
import java.lang.annotation.Annotation;
/**
* @author Paolo Perrotta
* @author Davide Marchignoli
*/
public interface XAnnotatedElement {
T getAnnotation(Class annotationType);
boolean isAnnotationPresent(Class annotationType);
Annotation[] getAnnotations();
/**
* Returns true if the underlying artefact
* is the same
*/
boolean equals(Object x);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy