org.jtools.xsql
Class XSqlType

java.lang.Object
  extended byorg.jtools.xsql.XSqlType

public class XSqlType
extends java.lang.Object

 Simple type-safe enum used for XSqlParser
 

Version:
$Id: XSqlType.java,v 1.3 2002/07/24 01:13:17 placson Exp $
Author:
Patrick Lacson (patrick@lacson.org)

Field Summary
static XSqlType CREATE
          CREATE type used for doing a CREATE TABLE DDL
static XSqlType DROP
          DROP type used for doing a DROP TABLE DDL
static XSqlType INSERT
          INSERT type used for doing a INSERT INTO DDL
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CREATE

public static final XSqlType CREATE
CREATE type used for doing a CREATE TABLE DDL


INSERT

public static final XSqlType INSERT
INSERT type used for doing a INSERT INTO DDL


DROP

public static final XSqlType DROP
DROP type used for doing a DROP TABLE DDL

Method Detail

toString

public java.lang.String toString()