}
return new ColumnValue(TColumnValue.boolVal(tBoolValue));
}
public static ColumnValue byteValue(Byte value) {
TByteValue tByteValue = new TByteValue();
if (value != null) {
tByteValue.setValue(value);
}
return new ColumnValue(TColumnValue.byteVal(tByteValue));
}