View Javadoc

1   /*
2    * joey-rt and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/11/19 16:53:37
6    */
7   package org.asyrinx.joey.om.condition;
8   
9   /***
10   * @author takeshi
11   */
12  public interface ICondition {
13      public static final String EQUAL = "=";
14  
15      public static final String GREATER_EQUAL = ">=";
16  
17      public static final String GREATER = ">";
18  
19      public static final String LESS_EQUAL = "<=";
20  
21      public static final String LESS = "<";
22  
23      public static final String LIKE = "like";
24  
25      public static final String IN = "in";
26  
27      public static final String NOT_IN = "not in";
28  
29  }