static enum SqlState.Category extends Enum<SqlState.Category>
| Enum Constant and Description |
|---|
N
No data (class 02).
|
S
Success (class 00).
|
W
Warning (class 01).
|
X
Exception (all other classes).
|
| Modifier and Type | Method and Description |
|---|---|
static SqlState.Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlState.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlState.Category S
public static final SqlState.Category W
public static final SqlState.Category N
public static final SqlState.Category X
public static SqlState.Category[] values()
for (SqlState.Category c : SqlState.Category.values()) System.out.println(c);
public static SqlState.Category valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2017 The Apache Software Foundation. All rights reserved.