Serializable
, Comparable<ProcedureCallerFactory.ParameterRegistration>
public static enum ProcedureCallerFactory.ParameterRegistration extends Enum<ProcedureCallerFactory.ParameterRegistration>
Enum Constant | Description |
---|---|
INDEX_AND_TYPE |
Binds by index and type.
|
INDEX_ONLY |
Binds by index only.
|
NAME_AND_TYPE |
Binds by name and type.
|
NAME_ONLY |
Binds by name only.
|
Modifier and Type | Method | Description |
---|---|---|
static ProcedureCallerFactory.ParameterRegistration |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static ProcedureCallerFactory.ParameterRegistration[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcedureCallerFactory.ParameterRegistration INDEX_ONLY
PreparedStatement.setObject(int, Object)
public static final ProcedureCallerFactory.ParameterRegistration NAME_ONLY
public static final ProcedureCallerFactory.ParameterRegistration INDEX_AND_TYPE
public static final ProcedureCallerFactory.ParameterRegistration NAME_AND_TYPE
public static ProcedureCallerFactory.ParameterRegistration[] values()
for (ProcedureCallerFactory.ParameterRegistration c : ProcedureCallerFactory.ParameterRegistration.values()) System.out.println(c);
public static ProcedureCallerFactory.ParameterRegistration 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 © 2016–2018. All rights reserved.