88899091929394959697
return true; } } catch (Exception ex) { throw new CDataGridException("Could not match row value: " + ex.toString(), ex); } return false; }
5354555657585960616263
throws CDataGridException { super(columnName); if (lbound >= ubound) throw new CDataGridException("Lower bound cannot equal upper bound."); this.lbound = lbound; this.ubound = ubound; this.inclusive = inclusive;
99100101102103104105106107108109
4142434445464748495051
throws CDataGridException { super(columnName); if (lbound != null && ubound != null && lbound.compareTo(ubound) >= 0) throw new CDataGridException("Lower bound cannot be greater than or equal to upper bound."); this.lbound = lbound; this.ubound = ubound; }
86878889909192939495