Package ch.bailu.gtk.glib
Schnittstelle TokenType
public interface TokenType
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final int
a binary integerstatic final int
a characterstatic final int
a ',' characterstatic final int
multi line commentstatic final int
one line commentstatic final int
the end of the filestatic final int
a '=' characterstatic final int
an error occurredstatic final int
a floating point numberstatic final int
a hex integerstatic final int
an identifierstatic final int
a null identifierstatic final int
an integerstatic final int
a '[' characterstatic final int
a '{' characterstatic final int
a '(' characterstatic final int
not a tokenstatic final int
an octal integerstatic final int
a ']' characterstatic final int
a '}' characterstatic final int
a ')' characterstatic final int
a stringstatic final int
a symbol
-
Felddetails
-
EOF
static final int EOFthe end of the file- Siehe auch:
-
LEFT_PAREN
static final int LEFT_PARENa '(' character- Siehe auch:
-
RIGHT_PAREN
static final int RIGHT_PARENa ')' character- Siehe auch:
-
LEFT_CURLY
static final int LEFT_CURLYa '{' character- Siehe auch:
-
RIGHT_CURLY
static final int RIGHT_CURLYa '}' character- Siehe auch:
-
LEFT_BRACE
static final int LEFT_BRACEa '[' character- Siehe auch:
-
RIGHT_BRACE
static final int RIGHT_BRACEa ']' character- Siehe auch:
-
EQUAL_SIGN
static final int EQUAL_SIGNa '=' character- Siehe auch:
-
COMMA
static final int COMMAa ',' character- Siehe auch:
-
NONE
static final int NONEnot a token- Siehe auch:
-
ERROR
static final int ERRORan error occurred- Siehe auch:
-
CHAR
static final int CHARa character- Siehe auch:
-
BINARY
static final int BINARYa binary integer- Siehe auch:
-
OCTAL
static final int OCTALan octal integer- Siehe auch:
-
INT
static final int INTan integer- Siehe auch:
-
HEX
static final int HEXa hex integer- Siehe auch:
-
FLOAT
static final int FLOATa floating point number- Siehe auch:
-
STRING
static final int STRINGa string- Siehe auch:
-
SYMBOL
static final int SYMBOLa symbol- Siehe auch:
-
IDENTIFIER
static final int IDENTIFIERan identifier- Siehe auch:
-
IDENTIFIER_NULL
static final int IDENTIFIER_NULLa null identifier- Siehe auch:
-
COMMENT_SINGLE
static final int COMMENT_SINGLEone line comment- Siehe auch:
-
COMMENT_MULTI
static final int COMMENT_MULTImulti line comment- Siehe auch:
-