public static enum JdbcLob.State extends java.lang.Enum<JdbcLob.State>
| Enum Constant and Description |
|---|
CLOSED
Object is closed.
|
NEW
New object without a value.
|
SET_CALLED
One of setter methods is invoked, but stream is not closed yet.
|
WITH_VALUE
A value is set.
|
| Modifier and Type | Method and Description |
|---|---|
static JdbcLob.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JdbcLob.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JdbcLob.State NEW
public static final JdbcLob.State SET_CALLED
public static final JdbcLob.State WITH_VALUE
public static final JdbcLob.State CLOSED
public static JdbcLob.State[] values()
for (JdbcLob.State c : JdbcLob.State.values()) System.out.println(c);
public static JdbcLob.State valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null