src/org/objectweb/cjdbc/common/sql/ParsingGranularities.java

説明を見る。
00001 00025 package org.objectweb.cjdbc.common.sql; 00026 00034 public class ParsingGranularities 00035 { 00037 public static final int NO_PARSING = 0; 00038 00042 public static final int TABLE = 1; 00043 00048 public static final int COLUMN = 2; 00049 00058 public static final int COLUMN_UNIQUE = 3; 00059 00066 public static String getInformation(int granularity) 00067 { 00068 switch (granularity) 00069 { 00070 case NO_PARSING : 00071 return "NO_PARSING"; 00072 case TABLE : 00073 return "TABLE"; 00074 case COLUMN : 00075 return "COLUMN"; 00076 case COLUMN_UNIQUE : 00077 return "COLUMN_UNIQUE"; 00078 default : 00079 return "Illegal parsing granularity"; 00080 } 00081 } 00082 }

CJDBCversion1.0.4に対してTue Oct 12 15:15:57 2004に生成されました。 doxygen 1.3.8