Package | Description |
---|---|
org.codehaus.janino |
The classes in this package pose the core of the Janino JavaTM
compiler.
|
Modifier and Type | Class and Description |
---|---|
class |
Scanner.EOFToken |
class |
Scanner.IdentifierToken |
class |
Scanner.KeywordToken |
class |
Scanner.LiteralToken
The type of the
value parameter determines the type of the literal
token:
Type/value returned by Scanner.LiteralToken.getLiteralValue() Literal
String STRING literal
Character CHAR literal
Integer INT literal
Long LONG literal
Float FLOAT literal
Double DOUBLE literal
Boolean BOOLEAN literal
null NULL literal
|
Modifier and Type | Method and Description |
---|---|
Scanner.Token |
Scanner.peek()
Peek the next token, but don't remove it from the input.
|
Scanner.Token |
Scanner.peekNextButOne()
Peek the next but one token, neither remove the next nor the next but one token from the
input.
|
Scanner.Token |
Scanner.read()
Read the next token from the input.
|
Copyright © 2001-2013. All Rights Reserved.