📄 accessflag.java
字号:
/**
*
*/
package gen.constvalue;
/**
* @author liuyi
*
*/
public interface AccessFlag {
public static short ACC_PUBLIC = 0x0001;
public static short ACC_PRIVATE = 0x0002;
public static short ACC_PROTECTED = 0x0004;
public static short ACC_STATIC = 0x0008;
public static short ACC_FINAL = 0x0010;
public static short ACC_SYNCHRONIZED = 0x0020;
public static short ACC_SUPER = 0x0020;
public static short ACC_VOLATILE = 0x0040;
public static short ACC_TRANSIENT = 0x0080;
public static short ACC_NATIVE = 0x0100;
public static short ACC_INTERFACE = 0x0200;
public static short ACC_ABSTRACT = 0x0400;
public static short ACC_STRICT = 0x0800;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -