📄 javatoken.java
字号:
* Language Specification</A> explains this token */ public final static int LITERAL_DOUBLE = 0x340; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int LITERAL_CHARACTER = 0x350; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int LITERAL_STRING = 0x360; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int LITERAL_NULL = 0x370; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int SEPARATOR_LPAREN = 0x400; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int SEPARATOR_RPAREN = 0x401; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int SEPARATOR_LBRACE = 0x410; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int SEPARATOR_RBRACE = 0x411; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int SEPARATOR_LBRACKET = 0x420; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int SEPARATOR_RBRACKET = 0x421; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int SEPARATOR_SEMICOLON = 0x430; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int SEPARATOR_COMMA = 0x440; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int SEPARATOR_PERIOD = 0x450; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_GREATER_THAN = 0x500; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_LESS_THAN = 0x501; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_LESS_THAN_OR_EQUAL = 0x502; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_GREATER_THAN_OR_EQUAL = 0x503; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_EQUAL = 0x504; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_NOT_EQUAL = 0x505; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_LOGICAL_NOT = 0x510; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_LOGICAL_AND = 0x511; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_LOGICAL_OR = 0x512; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_ADD = 0x520; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_SUBTRACT = 0x521; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_MULTIPLY = 0x522; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_DIVIDE = 0x523; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_MOD = 0x524; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_BITWISE_COMPLIMENT = 0x530; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_BITWISE_AND = 0x531; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_BITWISE_OR = 0x532; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_BITWISE_XOR = 0x533; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_SHIFT_LEFT = 0x540; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_SHIFT_RIGHT = 0x541; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_SHIFT_RIGHT_UNSIGNED = 0x542; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_ASSIGN = 0x550; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_ADD_ASSIGN = 0x560; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_SUBTRACT_ASSIGN = 0x561; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_MULTIPLY_ASSIGN = 0x562; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_DIVIDE_ASSIGN = 0x563; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_MOD_ASSIGN = 0x564; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_BITWISE_AND_ASSIGN = 0x571; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_BITWISE_OR_ASSIGN = 0x572; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_BITWISE_XOR_ASSIGN = 0x573; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_SHIFT_LEFT_ASSIGN = 0x580; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_SHIFT_RIGHT_ASSIGN = 0x581; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_SHIFT_RIGHT_UNSIGNED_ASSIGN = 0x582; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_INCREMENT = 0x590; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_DECREMENT = 0x591; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_QUESTION = 0x5A0; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int OPERATOR_COLON = 0x5A1; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int COMMENT_TRADITIONAL = 0xD00; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int COMMENT_END_OF_LINE = 0xD10; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int COMMENT_DOCUMENTATION = 0xD20; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int WHITE_SPACE = 0xE00; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int ERROR_IDENTIFIER = 0xF00; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int ERROR_UNCLOSED_STRING = 0xF10; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int ERROR_MALFORMED_STRING = 0xF11; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int ERROR_MALFORMED_UNCLOSED_STRING = 0xF12; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int ERROR_UNCLOSED_CHARACTER = 0xF20; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int ERROR_MALFORMED_CHARACTER = 0xF21; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int ERROR_MALFORMED_UNCLOSED_CHARACTER = 0xF22; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int ERROR_INTEGER_DECIMIAL_SIZE = 0xF30; /** * <A Href=http://java.sun.com/docs/books/jls/html/>The Java * Language Specification</A> explains this token */ public final static int ERROR_INTEGER_OCTAL_SIZE = 0xF31; /**
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -