| 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
StringSTRING literal
CharacterCHAR literal
IntegerINT literal
LongLONG literal
FloatFLOAT literal
DoubleDOUBLE literal
BooleanBOOLEAN literal
nullNULL 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-2012. All Rights Reserved.