Coverage Report - net.sf.sapjcosupport.jdbc.SqlState
 
Classes in this File Line Coverage Branch Coverage Complexity
SqlState
0% 
N/A 
1
 
 1  
 package net.sf.sapjcosupport.jdbc;
 2  
 
 3  
 import org.apache.commons.lang.enums.Enum;
 4  
 
 5  
 /**
 6  
  * Created by IntelliJ IDEA.
 7  
  * User: NDE1677
 8  
  * Date: Jul 6, 2006
 9  
  * Time: 2:10:06 PM
 10  
  * To change this template use File | Settings | File Templates.
 11  
  */
 12  
 public class SqlState extends Enum {
 13  0
     public static final SqlState Disconnected = new SqlState("Disconnected");
 14  0
     public static final SqlState Connected = new SqlState("Connected");
 15  0
     public static final SqlState Idle = new SqlState("Idle");
 16  0
     public static final SqlState Error = new SqlState("Error");
 17  0
     public static final SqlState OK = new SqlState("OK");
 18  
 
 19  
     private SqlState(String string) {
 20  0
         super(string);
 21  0
     }
 22  
 }