Package org.drools.decisiontable.parser
Interface SourceBuilder
-
- All Known Implementing Classes:
LhsBuilder,RhsBuilder
public interface SourceBuilderThis is for building up LHS and RHS code for a rule row.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaddCellValue(int row, int col, String value)default voidaddCellValue(int row, int col, String value, boolean trim)voidaddTemplate(int row, int col, String content)voidclearValues()ActionType.CodegetActionTypeCode()intgetColumn()StringgetResult()booleanhasValues()
-
-
-
Method Detail
-
getActionTypeCode
ActionType.Code getActionTypeCode()
-
getResult
String getResult()
-
addTemplate
void addTemplate(int row, int col, String content)
-
addCellValue
void addCellValue(int row, int col, String value)
-
addCellValue
default void addCellValue(int row, int col, String value, boolean trim)
-
clearValues
void clearValues()
-
hasValues
boolean hasValues()
-
getColumn
int getColumn()
-
-