@@ -99,7 +99,7 @@ public enum AccessFlag {
99
99
100
100
/**
101
101
* The access flag {@code ACC_PUBLIC}, corresponding to the source
102
- * modifier {@link Modifier#PUBLIC public} with a mask value of
102
+ * modifier {@link Modifier#PUBLIC public}, with a mask value of
103
103
* <code>{@value "0x%04x" Modifier#PUBLIC}</code>.
104
104
*/
105
105
PUBLIC (Modifier .PUBLIC , true ,
@@ -115,7 +115,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
115
115
116
116
/**
117
117
* The access flag {@code ACC_PRIVATE}, corresponding to the
118
- * source modifier {@link Modifier#PRIVATE private} with a mask
118
+ * source modifier {@link Modifier#PRIVATE private}, with a mask
119
119
* value of <code>{@value "0x%04x" Modifier#PRIVATE}</code>.
120
120
*/
121
121
PRIVATE (Modifier .PRIVATE , true , Location .SET_FIELD_METHOD_INNER_CLASS ,
@@ -130,7 +130,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
130
130
131
131
/**
132
132
* The access flag {@code ACC_PROTECTED}, corresponding to the
133
- * source modifier {@link Modifier#PROTECTED protected} with a mask
133
+ * source modifier {@link Modifier#PROTECTED protected}, with a mask
134
134
* value of <code>{@value "0x%04x" Modifier#PROTECTED}</code>.
135
135
*/
136
136
PROTECTED (Modifier .PROTECTED , true , Location .SET_FIELD_METHOD_INNER_CLASS ,
@@ -145,7 +145,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
145
145
146
146
/**
147
147
* The access flag {@code ACC_STATIC}, corresponding to the source
148
- * modifier {@link Modifier#STATIC static} with a mask value of
148
+ * modifier {@link Modifier#STATIC static}, with a mask value of
149
149
* <code>{@value "0x%04x" Modifier#STATIC}</code>.
150
150
*/
151
151
STATIC (Modifier .STATIC , true , Location .SET_FIELD_METHOD_INNER_CLASS ,
@@ -159,7 +159,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
159
159
160
160
/**
161
161
* The access flag {@code ACC_FINAL}, corresponding to the source
162
- * modifier {@link Modifier#FINAL final} with a mask
162
+ * modifier {@link Modifier#FINAL final}, with a mask
163
163
* value of <code>{@value "0x%04x" Modifier#FINAL}</code>.
164
164
*/
165
165
FINAL (Modifier .FINAL , true ,
@@ -217,7 +217,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
217
217
218
218
/**
219
219
* The access flag {@code ACC_SYNCHRONIZED}, corresponding to the
220
- * source modifier {@link Modifier#SYNCHRONIZED synchronized} with
220
+ * source modifier {@link Modifier#SYNCHRONIZED synchronized}, with
221
221
* a mask value of <code>{@value "0x%04x" Modifier#SYNCHRONIZED}</code>.
222
222
*/
223
223
SYNCHRONIZED (Modifier .SYNCHRONIZED , true , Location .SET_METHOD , null ),
@@ -238,7 +238,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
238
238
239
239
/**
240
240
* The access flag {@code ACC_VOLATILE}, corresponding to the
241
- * source modifier {@link Modifier#VOLATILE volatile} with a mask
241
+ * source modifier {@link Modifier#VOLATILE volatile}, with a mask
242
242
* value of <code>{@value "0x%04x" Modifier#VOLATILE}</code>.
243
243
*/
244
244
VOLATILE (Modifier .VOLATILE , true , Location .SET_FIELD , null ),
@@ -259,7 +259,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
259
259
260
260
/**
261
261
* The access flag {@code ACC_TRANSIENT}, corresponding to the
262
- * source modifier {@link Modifier#TRANSIENT transient} with a
262
+ * source modifier {@link Modifier#TRANSIENT transient}, with a
263
263
* mask value of <code>{@value "0x%04x" Modifier#TRANSIENT}</code>.
264
264
*/
265
265
TRANSIENT (Modifier .TRANSIENT , true , Location .SET_FIELD , null ),
@@ -280,7 +280,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
280
280
281
281
/**
282
282
* The access flag {@code ACC_NATIVE}, corresponding to the source
283
- * modifier {@link Modifier#NATIVE native} with a mask value of
283
+ * modifier {@link Modifier#NATIVE native}, with a mask value of
284
284
* <code>{@value "0x%04x" Modifier#NATIVE}</code>.
285
285
*/
286
286
NATIVE (Modifier .NATIVE , true , Location .SET_METHOD , null ),
@@ -301,7 +301,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
301
301
302
302
/**
303
303
* The access flag {@code ACC_ABSTRACT}, corresponding to the
304
- * source modifier {@link Modifier#ABSTRACT abstract} with a mask
304
+ * source modifier {@link Modifier#ABSTRACT abstract}, with a mask
305
305
* value of <code>{@value "0x%04x" Modifier#ABSTRACT}</code>.
306
306
*/
307
307
ABSTRACT (Modifier .ABSTRACT , true ,
@@ -316,7 +316,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
316
316
317
317
/**
318
318
* The access flag {@code ACC_STRICT}, corresponding to the source
319
- * modifier {@link Modifier#STRICT strictfp} with a mask value of
319
+ * modifier {@link Modifier#STRICT strictfp}, with a mask value of
320
320
* <code>{@value "0x%04x" Modifier#STRICT}</code>.
321
321
*
322
322
* @apiNote
0 commit comments