1 21 package org.dbunit; 22 23 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 TRANSACTION = new TestFeature("TRANSACTION"); 33 public static final TestFeature SCOLLABLE_RESULTSET = new TestFeature("SCOLLABLE_RESULTSET"); 34 public static final TestFeature INSERT_IDENTITY = new TestFeature("INSERT_IDENTITY"); 35 public static final TestFeature TRUNCATE_TABLE = new TestFeature("TRUNCATE_TABLE");; 36 37 private final String _name; 38 39 private TestFeature(String name) 40 { 41 _name = name; 42 } 43 44 public String toString() 45 { 46 return _name; 47 } 48 } 49 | Popular Tags |