| 1 |
|
package net.sf.sapjcosupport.jdbc; |
| 2 |
|
|
| 3 |
|
import org.apache.commons.lang.enums.Enum; |
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 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 |
|
} |