Interface DrlxParseSuccess
-
- All Superinterfaces:
DrlxParseResult
- All Known Implementing Classes:
AbstractDrlxParseSuccess,MultipleDrlxParseSuccess,SingleDrlxParseSuccess
public interface DrlxParseSuccess extends DrlxParseResult
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DrlxParseSuccessaddAllWatchedProperties(Collection<String> watchedProperties)com.github.javaparser.ast.expr.ExpressiongetExpr()StringgetExprBinding()Optional<com.github.javaparser.ast.expr.Expression>getImplicitCastExpression()List<com.github.javaparser.ast.expr.Expression>getNullSafeExpressions()default booleanisOOPath()booleanisPredicate()booleanisRequiresSplit()booleanisTemporal()-
Methods inherited from interface org.drools.modelcompiler.builder.generator.drlxparse.DrlxParseResult
accept, acceptWithReturnValue, combineWith, getExprId, getOriginalDrlConstraint, isSuccess, setOriginalDrlConstraint
-
-
-
-
Method Detail
-
isPredicate
boolean isPredicate()
-
getExprBinding
String getExprBinding()
-
getExpr
com.github.javaparser.ast.expr.Expression getExpr()
-
isRequiresSplit
boolean isRequiresSplit()
-
isTemporal
boolean isTemporal()
-
addAllWatchedProperties
DrlxParseSuccess addAllWatchedProperties(Collection<String> watchedProperties)
-
getImplicitCastExpression
Optional<com.github.javaparser.ast.expr.Expression> getImplicitCastExpression()
-
getNullSafeExpressions
List<com.github.javaparser.ast.expr.Expression> getNullSafeExpressions()
-
isOOPath
default boolean isOOPath()
- Specified by:
isOOPathin interfaceDrlxParseResult
-
-