KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > common > SimpleConstants


1 package com.daffodilwoods.daffodildb.server.sql99.common;
2
3 /**
4  * Title:
5  * Description:
6  * Copyright: Copyright (c) 2002
7  * Company:
8  * @author
9  * @version 1.0
10  */

11 public interface SimpleConstants {
12    public static final int LEFT = 1;
13    public static final int RIGHT = 2;
14
15    static final int FORWARD = 6;
16    static final int BACKWARD = 7;
17
18    public static int SUBQUERY = 3;
19    public static int VARIABLECOLUMN = 4;
20    public static int COLUMNDETAIL = 5;
21    public static int SEQUENCE = 8;
22 }
23
Popular Tags