View Javadoc
1   /*
2    *
3    * The DbUnit Database Testing Framework
4    * Copyright (C)2002-2004, DbUnit.org
5    *
6    * This library is free software; you can redistribute it and/or
7    * modify it under the terms of the GNU Lesser General Public
8    * License as published by the Free Software Foundation; either
9    * version 2.1 of the License, or (at your option) any later version.
10   *
11   * This library is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14   * Lesser General Public License for more details.
15   *
16   * You should have received a copy of the GNU Lesser General Public
17   * License along with this library; if not, write to the Free Software
18   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19   *
20   */
21  package org.dbunit;
22  
23  /**
24   * @author Manuel Laflamme
25   * @since Apr 11, 2003
26   * @version $Revision$
27   */
28  public class TestFeature
29  {
30      public static final TestFeature BLOB = new TestFeature("BLOB");
31      public static final TestFeature CLOB = new TestFeature("CLOB");
32      public static final TestFeature VARBINARY = new TestFeature("VARBINARY");
33      public static final TestFeature TRANSACTION =
34              new TestFeature("TRANSACTION");
35      public static final TestFeature SCROLLABLE_RESULTSET =
36              new TestFeature("SCROLLABLE_RESULTSET");
37      public static final TestFeature INSERT_IDENTITY =
38              new TestFeature("INSERT_IDENTITY");
39      public static final TestFeature TRUNCATE_TABLE =
40              new TestFeature("TRUNCATE_TABLE");
41      public static final TestFeature SDO_GEOMETRY =
42              new TestFeature("SDO_GEOMETRY");
43      public static final TestFeature XML_TYPE = new TestFeature("XML_TYPE");
44      public static final TestFeature TIMESTAMP_WITH_TIMEZONE =
45              new TestFeature("TIMESTAMP_WITH_TIMEZONE");
46  
47      private final String _name;
48  
49      private TestFeature(String name)
50      {
51          _name = name;
52      }
53  
54      public String toString()
55      {
56          return _name;
57      }
58  }