Uses of Class
org.junit.platform.launcher.tagexpression.Token
-
Packages that use Token Package Description org.junit.platform.launcher.tagexpression The tag expression language parser and related support classes. -
-
Uses of Token in org.junit.platform.launcher.tagexpression
Fields in org.junit.platform.launcher.tagexpression declared as Token Modifier and Type Field Description private static Token
ShuntingYard. SentinelToken
(package private) Token
TokenWith. token
Fields in org.junit.platform.launcher.tagexpression with type parameters of type Token Modifier and Type Field Description private java.util.List<Token>
ShuntingYard. tokens
Methods in org.junit.platform.launcher.tagexpression that return Token Modifier and Type Method Description Token
Token. concatenate(Token rightOfThis)
Methods in org.junit.platform.launcher.tagexpression that return types with arguments of type Token Modifier and Type Method Description (package private) java.util.List<Token>
Tokenizer. tokenize(java.lang.String infixTagExpression)
private java.util.List<Token>
Parser. tokensDerivedFrom(java.lang.String infixTagExpression)
Methods in org.junit.platform.launcher.tagexpression with parameters of type Token Modifier and Type Method Description Token
Token. concatenate(Token rightOfThis)
(package private) ParseStatus
Operator. createAndAddExpressionTo(Stack<TokenWith<TagExpression>> expressions, Token operatorToken)
ParseStatus
Operator.TagExpressionCreator. createExpressionAndAddTo(Stack<TokenWith<TagExpression>> expressions, Token operatorToken)
private java.lang.String
Operator. createMissingOperandMessage(Stack<TokenWith<TagExpression>> expressions, Token operatorToken)
(package private) static ParseStatus
ParseStatus. errorAt(Token token, java.lang.String operatorRepresentation, java.lang.String message)
private ParseStatus
ShuntingYard. findMatchingLeftParenthesis(Token token)
private ParseStatus
ShuntingYard. findOperands(Token token, Operator currentOperator)
boolean
Token. isLeftOf(Token token)
(package private) static ParseStatus
ParseStatus. missingClosingParenthesis(Token token, java.lang.String representation)
(package private) static ParseStatus
ParseStatus. missingOpeningParenthesis(Token token, java.lang.String representation)
(package private) static ParseStatus
ParseStatus. missingRhsOperand(Token token, java.lang.String representation)
(package private) static ParseStatus
ParseStatus. problemParsing(Token token, java.lang.String representation)
private ParseStatus
ShuntingYard. process(Token token)
private void
ShuntingYard. pushExpressionAt(Token token, TagExpression tagExpression)
private void
ShuntingYard. pushOperatorAt(Token token, Operator operator)
Method parameters in org.junit.platform.launcher.tagexpression with type arguments of type Token Modifier and Type Method Description private ParseResult
Parser. constructExpressionFrom(java.util.List<Token> tokens)
Constructors in org.junit.platform.launcher.tagexpression with parameters of type Token Constructor Description TokenWith(Token token, T element)
Constructor parameters in org.junit.platform.launcher.tagexpression with type arguments of type Token Constructor Description ShuntingYard(java.util.List<Token> tokens)
-