Cell cell = null;
if (columnValue != null)
{
CompoundSparseCellNameType nameType = new CompoundSparseCellNameType(Collections.EMPTY_LIST);
ColumnDefinition definition = new ColumnDefinition("ks", "cf", new ColumnIdentifier("c", true), Int32Type.instance, null, null, null, null, null);
cell = new BufferCell(nameType.create(Composites.EMPTY, definition), columnValue);
}
return bound.isSatisfiedByValue(conditionValue, cell, Int32Type.instance, bound.operator, 1234);
}