Uses of Class
org.junit.platform.launcher.tagexpression.Operator
-
Packages that use Operator Package Description org.junit.platform.launcher.tagexpression 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 Operator Modifier and Type Field Description private static OperatorOperators. Andprivate static OperatorShuntingYard. LeftParenthesisprivate static OperatorOperators. Notprivate static OperatorOperators. Orprivate static OperatorShuntingYard. RightParenthesisprivate static OperatorShuntingYard. SentinelFields in org.junit.platform.launcher.tagexpression with type parameters of type Operator Modifier and Type Field Description private Stack<TokenWith<Operator>>ShuntingYard. operatorsprivate java.util.Map<java.lang.String,Operator>Operators. representationToOperatorMethods in org.junit.platform.launcher.tagexpression that return Operator Modifier and Type Method Description (package private) static OperatorOperator. binaryOperator(java.lang.String representation, int precedence, Operator.Associativity associativity, java.util.function.BiFunction<TagExpression,TagExpression,TagExpression> binaryExpression)(package private) static OperatorOperator. nullaryOperator(java.lang.String representation, int precedence)(package private) OperatorOperators. operatorFor(java.lang.String token)private OperatorShuntingYard. previousOperator()(package private) static OperatorOperator. unaryOperator(java.lang.String representation, int precedence, Operator.Associativity associativity, java.util.function.Function<TagExpression,TagExpression> unaryExpression)Methods in org.junit.platform.launcher.tagexpression with parameters of type Operator Modifier and Type Method Description private 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)
-