Stay organized with collections
Save and categorize content based on your preferences.
Inherited
public
abstract
@interface
Inherited
implements
Annotation
java.lang.annotation.Inherited
|
Indicates that an annotation interface is automatically inherited. If
an Inherited meta-annotation is present on an annotation interface
declaration, and the user queries the annotation interface on a class
declaration, and the class declaration has no annotation for this interface,
then the class's superclass will automatically be queried for the
annotation interface. This process will be repeated until an annotation for
this interface is found, or the top of the class hierarchy (Object)
is reached. If no superclass has an annotation for this interface, then
the query will indicate that the class in question has no such annotation.
Note that this meta-annotation interface has no effect if the annotated
interface is used to annotate anything other than a class. Note also
that this meta-annotation only causes annotations to be inherited
from superclasses; annotations on implemented interfaces have no
effect.
Summary
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# Inherited\n\nAdded in [API level 1](/guide/topics/manifest/uses-sdk-element#ApiLevels) \nSummary: [Inherited Methods](#inhmethods) \n\nInherited\n=========\n\n\n`\npublic\n\n\nabstract\n@interface\nInherited\n`\n\n\n`\n\n\nimplements\n\n`[Annotation](/reference/java/lang/annotation/Annotation)`\n\n\n`\n\n|--------------------------------|\n| java.lang.annotation.Inherited |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nIndicates that an annotation interface is automatically inherited. If\nan Inherited meta-annotation is present on an annotation interface\ndeclaration, and the user queries the annotation interface on a class\ndeclaration, and the class declaration has no annotation for this interface,\nthen the class's superclass will automatically be queried for the\nannotation interface. This process will be repeated until an annotation for\nthis interface is found, or the top of the class hierarchy (Object)\nis reached. If no superclass has an annotation for this interface, then\nthe query will indicate that the class in question has no such annotation.\n\nNote that this meta-annotation interface has no effect if the annotated\ninterface is used to annotate anything other than a class. Note also\nthat this meta-annotation only causes annotations to be inherited\nfrom superclasses; annotations on implemented interfaces have no\neffect.\n\nSummary\n-------\n\n| ### Inherited methods |\n|-----------------------|---|\n| From interface ` `[java.lang.annotation.Annotation](/reference/java/lang/annotation/Annotation)` ` |-------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ` abstract `[Class](/reference/java/lang/Class)`\u003c? extends `[Annotation](/reference/java/lang/annotation/Annotation)`\u003e` | ` `[annotationType](/reference/java/lang/annotation/Annotation#annotationType())`() ` Returns the annotation interface of this annotation. | | ` abstract boolean` | ` `[equals](/reference/java/lang/annotation/Annotation#equals(java.lang.Object))`(`[Object](/reference/java/lang/Object)` obj) ` Returns true if the specified object represents an annotation that is logically equivalent to this one. | | ` abstract int` | ` `[hashCode](/reference/java/lang/annotation/Annotation#hashCode())`() ` Returns the hash code of this annotation. | | ` abstract `[String](/reference/java/lang/String) | ` `[toString](/reference/java/lang/annotation/Annotation#toString())`() ` Returns a string representation of this annotation. | ||"]]