Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
List<Parameter<?>> |
Routine.getInParameters()
A list of IN parameters passed to the stored procedure as argument.
|
List<Parameter<?>> |
Routine.getOutParameters()
A list of OUT parameters passed to the stored procedure as argument.
|
List<Parameter<?>> |
Routine.getParameters() |
Modifier and Type | Method and Description |
---|---|
protected static <T> Parameter<T> |
AbstractRoutine.createParameter(String name,
DataType<T> type)
Subclasses may call this method to create
UDTField objects that
are linked to this table. |
protected static <T> Parameter<T> |
AbstractRoutine.createParameter(String name,
DataType<T> type,
boolean isDefaulted)
Subclasses may call this method to create
UDTField objects that
are linked to this table. |
protected Parameter<?> |
AbstractRoutine.getReturnParameter() |
Modifier and Type | Method and Description |
---|---|
List<Parameter<?>> |
AbstractRoutine.getInParameters() |
protected Map<Parameter<?>,Field<?>> |
AbstractRoutine.getInValues() |
List<Parameter<?>> |
AbstractRoutine.getOutParameters() |
List<Parameter<?>> |
AbstractRoutine.getParameters() |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractRoutine.addInOutParameter(Parameter<?> parameter) |
protected void |
AbstractRoutine.addInParameter(Parameter<?> parameter) |
protected void |
AbstractRoutine.addOutParameter(Parameter<?> parameter) |
protected <Z> Z |
AbstractRoutine.getValue(Parameter<Z> parameter) |
protected void |
AbstractRoutine.setField(Parameter<?> parameter,
Field<?> value) |
protected void |
AbstractRoutine.setNumber(Parameter<? extends Number> parameter,
Field<? extends Number> value) |
protected void |
AbstractRoutine.setNumber(Parameter<? extends Number> parameter,
Number value) |
protected void |
AbstractRoutine.setReturnParameter(Parameter<T> parameter) |
protected void |
AbstractRoutine.setValue(Parameter<?> parameter,
Object value) |
Copyright © 2014. All Rights Reserved.