D:\JavaFrameworks\InsuranceFramework\src\java\db_adapter\DB_Constants.java
 1 /*
 2  * To change this template, choose Tools | Templates
 3  * and open the template in the editor.
 4  */
 5 
 6 package db_adapter;
 7 
 8 /**
 9  *
10  * @author sameldin
11  */
12 public class DB_Constants
13 {
14     //-----------------------------------------------------------------------
15     public final static int         START_OF_STRING                     = 1;
16     public final static int         DOES_NOT_START_OF_STRING            = 2;
17     public final static int         SUB_STRING                          = 3;
18     public final static int         LOOKING_FOR_ONE_CHAR                = 4;
19     public final static int         LOOK_FOR_ESCAPE_CHAR                = 5;
20     public final static int         LOOK_FOR_ESCAPE_UNDERSCORE_CHAR     = 6;
21 }
22 
23