Uses of Class
org.junit.platform.launcher.tagexpression.Operator
Packages that use Operator
Package
Description
The tag expression language parser and related support classes.
-
Uses of Operator in org.junit.platform.launcher.tagexpression
Fields in org.junit.platform.launcher.tagexpression declared as OperatorModifier and TypeFieldDescriptionprivate static final OperatorOperators.Andprivate static final OperatorShuntingYard.LeftParenthesisprivate static final OperatorOperators.Notprivate static final OperatorOperators.Orprivate static final OperatorShuntingYard.RightParenthesisprivate static final OperatorShuntingYard.SentinelFields in org.junit.platform.launcher.tagexpression with type parameters of type OperatorMethods in org.junit.platform.launcher.tagexpression that return OperatorModifier and TypeMethodDescription(package private) static OperatorOperator.binaryOperator(String representation, int precedence, Operator.Associativity associativity, BiFunction<TagExpression, TagExpression, TagExpression> binaryExpression) (package private) static OperatorOperator.nullaryOperator(String representation, int precedence) (package private) OperatorOperators.operatorFor(String token) private OperatorShuntingYard.previousOperator()(package private) static OperatorOperator.unaryOperator(String representation, int precedence, Operator.Associativity associativity, Function<TagExpression, TagExpression> unaryExpression) Methods in org.junit.platform.launcher.tagexpression with parameters of type OperatorModifier and TypeMethodDescriptionprivate ParseStatusShuntingYard.findOperands(Token token, Operator currentOperator) (package private) booleanOperator.hasLowerPrecedenceThan(Operator operator) (package private) booleanOperator.hasSamePrecedenceAs(Operator operator) private voidShuntingYard.pushOperatorAt(Token token, Operator operator)