Netsutie PHP Toolkit
SearchLongFieldOperator.php
Go to the documentation of this file.
1 <?php
9 
10 
11 
12  static $paramtypesmap = array(
13 
14  );
15 
22  const between = "between";
23 
30  const NSempty = "empty";
31 
38  const equalTo = "equalTo";
39 
46  const greaterThan = "greaterThan";
47 
54  const greaterThanOrEqualTo = "greaterThanOrEqualTo";
55 
62  const lessThan = "lessThan";
63 
70  const lessThanOrEqualTo = "lessThanOrEqualTo";
71 
78  const notBetween = "notBetween";
79 
86  const notEmpty = "notEmpty";
87 
94  const notEqualTo = "notEqualTo";
95 
102  const notGreaterThan = "notGreaterThan";
103 
110  const notGreaterThanOrEqualTo = "notGreaterThanOrEqualTo";
111 
118  const notLessThan = "notLessThan";
119 
126  const notLessThanOrEqualTo = "notLessThanOrEqualTo";
127 
128 }