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 TokenScannerImpl. lastTokenFields in org.yaml.snakeyaml.scanner with type parameters of type Token Modifier and Type Field Description private java.util.List<Token>ScannerImpl. tokensMethods in org.yaml.snakeyaml.scanner that return Token Modifier and Type Method Description TokenScanner. getToken()Returns the next token.TokenScannerImpl. getToken()Return the next token, removing it from the queue.TokenScanner. peekToken()Return the next token, but do not delete it from the stream.TokenScannerImpl. peekToken()Return the next token, but do not delete it from the queue.private TokenScannerImpl. scanAnchor(boolean isAnchor)The YAML 1.1 specification does not restrict characters for anchors and aliases.private TokenScannerImpl. scanFlowScalar(char style)Scan a flow-style scalar.private TokenScannerImpl. scanPlain()Scan a plain scalar.private TokenScannerImpl. 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 voidScannerImpl. addToken(int index, Token token)private voidScannerImpl. 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 voidScannerImpl. 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 classAliasTokenAliasclassAnchorTokenAnchorclassBlockEndTokenBlock endclassBlockEntryTokenblock entryclassBlockMappingStartTokenBlockMappingStartTokenclassBlockSequenceStartTokenBlockSequenceStartTokenclassCommentTokenComment for humansclassDirectiveToken<T>TokenclassDocumentEndTokenDocumentEndTokenclassDocumentStartTokenDocumentStartTokenclassFlowEntryTokenFlowEntryTokenclassFlowMappingEndTokenFlowMappingEndTokenclassFlowMappingStartTokenFlowMappingStartTokenclassFlowSequenceEndTokenFlowSequenceEndTokenclassFlowSequenceStartTokenFlowSequenceStartTokenclassKeyTokenKeyclassScalarTokenclassStreamEndTokenclassStreamStartTokenclassTagTokenclassValueToken
-