Uses of Interface
org.jooq.Parameter

Packages that use Parameter
org.jooq   
org.jooq.impl   
 

Uses of Parameter in org.jooq
 

Methods in org.jooq that return types with arguments of type Parameter
 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()
           
 

Uses of Parameter in org.jooq.impl
 

Methods in org.jooq.impl that return Parameter
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()
           
 

Methods in org.jooq.impl that return types with arguments of type Parameter
 List<Parameter<?>> AbstractRoutine.getInParameters()
           
protected  Map<Parameter<?>,Field<?>> AbstractRoutine.getInValues()
           
 List<Parameter<?>> AbstractRoutine.getOutParameters()
           
 List<Parameter<?>> AbstractRoutine.getParameters()
           
 

Methods in org.jooq.impl with parameters of type Parameter
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 © 2012. All Rights Reserved.