public static enum DBServices.StoredProcedureResult extends java.lang.Enum<DBServices.StoredProcedureResult>
Enum Constant and Description |
---|
IGNORE_RESULT |
RESULT_AS_DATA_HOLDERS_LIST |
RESULT_AS_MAP |
RESULT_AS_ROWSET |
RESULT_AS_VECTOR |
Modifier and Type | Method and Description |
---|---|
static DBServices.StoredProcedureResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DBServices.StoredProcedureResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBServices.StoredProcedureResult IGNORE_RESULT
public static final DBServices.StoredProcedureResult RESULT_AS_DATA_HOLDERS_LIST
public static final DBServices.StoredProcedureResult RESULT_AS_VECTOR
public static final DBServices.StoredProcedureResult RESULT_AS_MAP
public static final DBServices.StoredProcedureResult RESULT_AS_ROWSET
public static DBServices.StoredProcedureResult[] values()
for (DBServices.StoredProcedureResult c : DBServices.StoredProcedureResult.values()) System.out.println(c);
public static DBServices.StoredProcedureResult 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