Package | Description |
---|---|
org.junit.platform.launcher.tagexpression |
The tag expression language parser and related support classes.
|
Modifier and Type | Field and Description |
---|---|
private Operator.Associativity |
Operator.associativity |
Modifier and Type | Method and Description |
---|---|
static Operator.Associativity |
Operator.Associativity.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Operator.Associativity[] |
Operator.Associativity.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
(package private) static Operator |
Operator.binaryOperator(java.lang.String representation,
int precedence,
Operator.Associativity associativity,
java.util.function.BiFunction<TagExpression,TagExpression,TagExpression> binaryExpression) |
(package private) static Operator |
Operator.unaryOperator(java.lang.String representation,
int precedence,
Operator.Associativity associativity,
java.util.function.Function<TagExpression,TagExpression> unaryExpression) |
Constructor and Description |
---|
Operator(java.lang.String representation,
int precedence,
int arity,
Operator.Associativity associativity,
Operator.TagExpressionCreator tagExpressionCreator) |