31
31
* an annotation type. Also note that this interface does not itself
32
32
* define an annotation type.
33
33
*
34
- * More information about annotation types can be found in section 9.6 of
34
+ * More information about annotation types can be found in section {@jls 9.6} of
35
35
* <cite>The Java™ Language Specification</cite>.
36
36
*
37
37
* The {@link java.lang.reflect.AnnotatedElement} interface discusses
@@ -72,7 +72,7 @@ public interface Annotation {
72
72
*
73
73
* <li>Two corresponding array typed members {@code x} and {@code y}
74
74
* are considered equal if {@code Arrays.equals(x, y)}, for the
75
- * appropriate overloading of {@link java.util.Arrays#equals}.
75
+ * appropriate overloading of {@link java.util.Arrays#equals Arrays.equals }.
76
76
* </ul>
77
77
*
78
78
* @return true if the specified object represents an annotation
@@ -81,17 +81,15 @@ public interface Annotation {
81
81
boolean equals (Object obj );
82
82
83
83
/**
84
- * Returns the hash code of this annotation, as defined below:
84
+ * Returns the hash code of this annotation.
85
85
*
86
86
* <p>The hash code of an annotation is the sum of the hash codes
87
- * of its members (including those with default values), as defined
88
- * below:
87
+ * of its members (including those with default values).
89
88
*
90
89
* The hash code of an annotation member is (127 times the hash code
91
90
* of the member-name as computed by {@link String#hashCode()}) XOR
92
- * the hash code of the member-value, as defined below:
93
- *
94
- * <p>The hash code of a member-value depends on its type:
91
+ * the hash code of the member-value.
92
+ * The hash code of a member-value depends on its type as defined below:
95
93
* <ul>
96
94
* <li>The hash code of a primitive value <i>{@code v}</i> is equal to
97
95
* <code><i>WrapperType</i>.valueOf(<i>v</i>).hashCode()</code>, where
@@ -121,7 +119,7 @@ public interface Annotation {
121
119
* of the representation are implementation-dependent, but the following
122
120
* may be regarded as typical:
123
121
* <pre>
124
- * @com.acme.util. Name(first=Alfred , middle=E. , last=Neuman )
122
+ * @com.example. Name(first="Duke" , middle="of" , last="Java" )
125
123
* </pre>
126
124
*
127
125
* @return a string representation of this annotation
@@ -130,7 +128,15 @@ public interface Annotation {
130
128
131
129
/**
132
130
* Returns the annotation type of this annotation.
131
+ *
132
+ * @apiNote Implementation-dependent classes are used to provide
133
+ * the implementations of annotations. Therefore, calling {@link
134
+ * Object#getClass getClass} on an annotation will return an
135
+ * implementation-dependent class. In contrast, this method will
136
+ * reliably return the annotation type of the annotation.
137
+ *
133
138
* @return the annotation type of this annotation
139
+ * @see Enum#getDeclaringClass
134
140
*/
135
141
Class <? extends Annotation > annotationType ();
136
142
}
0 commit comments