< prev index next >

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

Print this page

1122     int ACC_PUBLIC = 0x0001;
1123 
1124     /** The value of PROTECTED access and property modifier. */
1125     int ACC_PROTECTED = 0x0004;
1126 
1127     /** The value of PRIVATE access and property modifier. */
1128     int ACC_PRIVATE = 0x0002;
1129 
1130     /** The value of INTERFACE access and property modifier. */
1131     int ACC_INTERFACE = 0x0200;
1132 
1133     /** The value of ENUM access and property modifier. */
1134     int ACC_ENUM = 0x4000;
1135 
1136     /** The value of ANNOTATION access and property modifier. */
1137     int ACC_ANNOTATION = 0x2000;
1138 
1139     /** The value of SUPER access and property modifier. */
1140     int ACC_SUPER = 0x0020;
1141 



1142     /** The value of ABSTRACT access and property modifier. */
1143     int ACC_ABSTRACT = 0x0400;
1144 
1145     /** The value of VOLATILE access and property modifier. */
1146     int ACC_VOLATILE = 0x0040;
1147 
1148     /** The value of TRANSIENT access and property modifier. */
1149     int ACC_TRANSIENT = 0x0080;
1150 
1151     /** The value of SYNTHETIC access and property modifier. */
1152     int ACC_SYNTHETIC = 0x1000;
1153 
1154     /** The value of STATIC access and property modifier. */
1155     int ACC_STATIC = 0x0008;
1156 
1157     /** The value of FINAL access and property modifier. */
1158     int ACC_FINAL = 0x0010;
1159 
1160     /** The value of SYNCHRONIZED access and property modifier. */
1161     int ACC_SYNCHRONIZED = 0x0020;

1122     int ACC_PUBLIC = 0x0001;
1123 
1124     /** The value of PROTECTED access and property modifier. */
1125     int ACC_PROTECTED = 0x0004;
1126 
1127     /** The value of PRIVATE access and property modifier. */
1128     int ACC_PRIVATE = 0x0002;
1129 
1130     /** The value of INTERFACE access and property modifier. */
1131     int ACC_INTERFACE = 0x0200;
1132 
1133     /** The value of ENUM access and property modifier. */
1134     int ACC_ENUM = 0x4000;
1135 
1136     /** The value of ANNOTATION access and property modifier. */
1137     int ACC_ANNOTATION = 0x2000;
1138 
1139     /** The value of SUPER access and property modifier. */
1140     int ACC_SUPER = 0x0020;
1141 
1142     /** The value of IDENTITY access and property modifier. */
1143     int ACC_IDENTITY = 0x0020;
1144 
1145     /** The value of ABSTRACT access and property modifier. */
1146     int ACC_ABSTRACT = 0x0400;
1147 
1148     /** The value of VOLATILE access and property modifier. */
1149     int ACC_VOLATILE = 0x0040;
1150 
1151     /** The value of TRANSIENT access and property modifier. */
1152     int ACC_TRANSIENT = 0x0080;
1153 
1154     /** The value of SYNTHETIC access and property modifier. */
1155     int ACC_SYNTHETIC = 0x1000;
1156 
1157     /** The value of STATIC access and property modifier. */
1158     int ACC_STATIC = 0x0008;
1159 
1160     /** The value of FINAL access and property modifier. */
1161     int ACC_FINAL = 0x0010;
1162 
1163     /** The value of SYNCHRONIZED access and property modifier. */
1164     int ACC_SYNCHRONIZED = 0x0020;
< prev index next >