Package | Description |
---|---|
org.yaml.snakeyaml.scanner | |
org.yaml.snakeyaml.tokens |
Modifier and Type | Field and Description |
---|---|
private Token |
ScannerImpl.lastToken |
Modifier and Type | Field and Description |
---|---|
private java.util.List<Token> |
ScannerImpl.tokens |
Modifier and Type | Method and Description |
---|---|
Token |
Scanner.getToken()
Returns the next token.
|
Token |
ScannerImpl.getToken()
Return the next token, removing it from the queue.
|
Token |
Scanner.peekToken()
Return the next token, but do not delete it from the stream.
|
Token |
ScannerImpl.peekToken()
Return the next token, but do not delete it from the queue.
|
private Token |
ScannerImpl.scanAnchor(boolean isAnchor)
The YAML 1.1 specification does not restrict characters for anchors and
aliases.
|
private Token |
ScannerImpl.scanFlowScalar(char style)
Scan a flow-style scalar.
|
private Token |
ScannerImpl.scanPlain()
Scan a plain scalar.
|
private Token |
ScannerImpl.scanTag()
Scan a Tag property.
|
Modifier and Type | Method and Description |
---|---|
private java.util.List<Token> |
ScannerImpl.makeTokenList(Token... tokens) |
private java.util.List<Token> |
ScannerImpl.scanBlockScalar(char style) |
private java.util.List<Token> |
ScannerImpl.scanDirective() |
Modifier and Type | Method and Description |
---|---|
private void |
ScannerImpl.addToken(int index,
Token token) |
private void |
ScannerImpl.addToken(Token token) |
private java.util.List<Token> |
ScannerImpl.makeTokenList(Token... tokens) |
Modifier and Type | Method and Description |
---|---|
private void |
ScannerImpl.addAllTokens(java.util.List<Token> tokens) |
Modifier and Type | Class and Description |
---|---|
class |
AliasToken |
class |
AnchorToken |
class |
BlockEndToken |
class |
BlockEntryToken |
class |
BlockMappingStartToken |
class |
BlockSequenceStartToken |
class |
CommentToken |
class |
DirectiveToken<T> |
class |
DocumentEndToken |
class |
DocumentStartToken |
class |
FlowEntryToken |
class |
FlowMappingEndToken |
class |
FlowMappingStartToken |
class |
FlowSequenceEndToken |
class |
FlowSequenceStartToken |
class |
KeyToken |
class |
ScalarToken |
class |
StreamEndToken |
class |
StreamStartToken |
class |
TagToken |
class |
ValueToken |
class |
WhitespaceToken
Deprecated.
it will be removed because it is not used
|