1 21 package com.db4o; 22 23 24 27 public class QESmaller extends QEAbstract 28 { 29 boolean evaluate(QConObject a_constraint, QCandidate a_candidate, Object a_value){ 30 if(a_value == null){ 31 return false; 32 } 33 return a_constraint.getComparator(a_candidate).isSmaller(a_value); 34 } 35 36 public void indexBitMap(boolean[] bits){ 37 bits[QE.SMALLER] = true; 38 } 39 40 } 41 | Popular Tags |