KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > dql > listenerevents > IteratorConstants


1 package com.daffodilwoods.daffodildb.server.sql99.dql.listenerevents;
2
3 /**
4  * It allows user to declare the constants for resultset.
5  * <p>Title: </p>
6  * <p>Description: </p>
7  * <p>Copyright: Copyright (c) 2003</p>
8  * <p>Company: </p>
9  * @author unascribed
10  * @version 1.0
11  */

12
13 public interface IteratorConstants {
14
15    /**
16     * It represents NONSCROLLABLE type of resultset.
17     */

18
19    static int NONSCROLLABLE = 0;
20
21    /**
22     * It represents UPDATABLE type of resultset.
23     */

24
25    static int UPDATABLE = 1;
26
27    /**
28     * It represents SCROLLABLE type of resultset.
29     */

30
31    static int SCROLLABLE = 2;
32 }
33
Popular Tags