Uses of Class
org.spockframework.runtime.model.ExpressionInfo
-
Packages that use ExpressionInfo Package Description org.spockframework.runtime org.spockframework.runtime.model -
-
Uses of ExpressionInfo in org.spockframework.runtime
Methods in org.spockframework.runtime that return ExpressionInfo Modifier and Type Method Description ExpressionInfo
ExpressionInfoBuilder. build()
ExpressionInfo
Condition. getExpression()
Methods in org.spockframework.runtime with parameters of type ExpressionInfo Modifier and Type Method Description static java.lang.String
ExpressionInfoRenderer. render(ExpressionInfo expr)
static void
ExpressionInfoValueRenderer. render(ExpressionInfo expr)
-
Uses of ExpressionInfo in org.spockframework.runtime.model
Methods in org.spockframework.runtime.model that return ExpressionInfo Modifier and Type Method Description ExpressionInfo
ExpressionInfo. setRelevant(boolean relevant)
ExpressionInfo
ExpressionInfo. setValue(java.lang.Object value)
Methods in org.spockframework.runtime.model that return types with arguments of type ExpressionInfo Modifier and Type Method Description java.util.List<ExpressionInfo>
ExpressionInfo. getChildren()
java.lang.Iterable<ExpressionInfo>
ExpressionInfo. inCustomOrder(boolean skipIrrelevant, java.util.Comparator<ExpressionInfo> comparator)
java.lang.Iterable<ExpressionInfo>
ExpressionInfo. inPostfixOrder(boolean skipIrrelevant)
java.lang.Iterable<ExpressionInfo>
ExpressionInfo. inPrefixOrder(boolean skipIrrelevant)
java.util.Iterator<ExpressionInfo>
ExpressionInfo. iterator()
Method parameters in org.spockframework.runtime.model with type arguments of type ExpressionInfo Modifier and Type Method Description java.lang.Iterable<ExpressionInfo>
ExpressionInfo. inCustomOrder(boolean skipIrrelevant, java.util.Comparator<ExpressionInfo> comparator)
Constructors in org.spockframework.runtime.model with parameters of type ExpressionInfo Constructor Description ExpressionInfo(TextRegion region, TextPosition anchor, java.lang.String operation, ExpressionInfo... children)
Constructor parameters in org.spockframework.runtime.model with type arguments of type ExpressionInfo Constructor Description ExpressionInfo(TextRegion region, TextPosition anchor, java.lang.String operation, java.util.List<ExpressionInfo> children)
-