ValueExpr constructor

ValueExpr(
  1. Object? val,
  2. dbType type
)

Implementation

ValueExpr(Object? val, dbType type) {
  this.val = val;
  this.fieldType = type;
}