< prev index next >

src/java.base/share/classes/java/lang/classfile/ClassFile.java

Print this page
@@ -531,10 +531,13 @@
      int ACC_ANNOTATION = 0x2000;
  
      /** The bit mask of SUPER access and property modifier. */
      int ACC_SUPER = 0x0020;
  
+     /** The bit mask of IDENTITY access and property modifier. */
+     int ACC_IDENTITY = 0x0020;
+ 
      /** The bit mask of ABSTRACT access and property modifier. */
      int ACC_ABSTRACT = 0x0400;
  
      /** The bit mask of VOLATILE access and property modifier. */
      int ACC_VOLATILE = 0x0040;
< prev index next >