Package org.drools.template.parser
Interface Cell<T>
-
- All Known Implementing Classes:
AbstractCell,ArrayCell,BooleanCell,DoubleCell,LongCell,StringCell
public interface Cell<T>A cell in a decision table
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddValue(java.util.Map<java.lang.String,java.lang.Object> vars)ColumngetColumn()intgetIndex()RowgetRow()TgetValue()voidinsert(org.kie.api.runtime.KieSession session)booleanisEmpty()voidsetIndex(int i)voidsetValue(java.lang.String value)
-
-
-
Method Detail
-
getRow
Row getRow()
-
getColumn
Column getColumn()
-
setValue
void setValue(java.lang.String value)
-
getValue
T getValue()
-
addValue
void addValue(java.util.Map<java.lang.String,java.lang.Object> vars)
-
insert
void insert(org.kie.api.runtime.KieSession session)
-
setIndex
void setIndex(int i)
-
getIndex
int getIndex()
-
isEmpty
boolean isEmpty()
-
-