Uses of Class
org.yaml.snakeyaml.tokens.Token
-
Packages that use Token Package Description org.yaml.snakeyaml.scanner org.yaml.snakeyaml.tokens -
-
Uses of Token in org.yaml.snakeyaml.scanner
Fields in org.yaml.snakeyaml.scanner declared as Token Modifier and Type Field Description private Token
ScannerImpl. lastToken
Fields in org.yaml.snakeyaml.scanner with type parameters of type Token Modifier and Type Field Description private java.util.List<Token>
ScannerImpl. tokens
Methods in org.yaml.snakeyaml.scanner that return Token Modifier and Type Method 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.Methods in org.yaml.snakeyaml.scanner that return types with arguments of type Token Modifier and Type Method 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()
Methods in org.yaml.snakeyaml.scanner with parameters of type Token Modifier and Type Method Description private void
ScannerImpl. addToken(int index, Token token)
private void
ScannerImpl. addToken(Token token)
private java.util.List<Token>
ScannerImpl. makeTokenList(Token... tokens)
Method parameters in org.yaml.snakeyaml.scanner with type arguments of type Token Modifier and Type Method Description private void
ScannerImpl. addAllTokens(java.util.List<Token> tokens)
-
Uses of Token in org.yaml.snakeyaml.tokens
Subclasses of Token in org.yaml.snakeyaml.tokens Modifier and Type Class 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
-