| |
|
| java.lang.Object com.completex.objective.components.persistency.AbstractParameters com.completex.objective.components.persistency.Parameters
Method Summary | |
public Parameter | add(ColumnType type, Object value) Appends value to end of this collection.
Parameters: type - type column type of the field this parameter corresponds to Parameters: value - value of this parameter or instance of Parameter class. | public Parameter | add(Object value) Appends value to parameter collection. | protected Parameter | add0(ColumnType type, Object value) Appends value to end of this collection.
Parameters: type - type column type of the field this parameter corresponds to Parameters: value - value of this parameter. | public void | addAll(Parameters argParameters) | public void | addAll(Object[] argParameters) | public void | addAll(int index, Parameters argParameters) Inserts all of the elements in the specified Collection into this
collection, starting at the specified position. | protected Parameter | createParameter(ColumnType type, Object value) Factory method
Parameters: type - type column type of the field this parameter corresponds to Parameters: value - value of this parameter. | public String | toString() |
Parameters | public Parameters()(Code) | | |
Parameters | public Parameters(Object[] parameters)(Code) | | Constructs Parameters from array of values.
If the array element is of Parameter type it is simply added,
ff not then new parameter with null column type gets created and added to this collection.
Parameters: parameters - |
Parameters | public Parameters(Parameter[] parameters)(Code) | | Constructs new parameters collection from Parameter []
Parameters: parameters - Parameter [] |
add | public Parameter add(ColumnType type, Object value)(Code) | | Appends value to end of this collection.
Parameters: type - type column type of the field this parameter corresponds to Parameters: value - value of this parameter or instance of Parameter class. added Parameter throws: OdalRuntimePersistencyException - if the value is already of Parameter type and type != null |
add | public Parameter add(Object value)(Code) | | Appends value to parameter collection. If value is of Parameter class - adds it,
otherwise - creates new Parameter with null type and adds it to the end of this collection.
Parameters: value - value of this parameter. added Parameter or value if it is of Parameter class |
add0 | protected Parameter add0(ColumnType type, Object value)(Code) | | Appends value to end of this collection.
Parameters: type - type column type of the field this parameter corresponds to Parameters: value - value of this parameter. added Parameter |
addAll | public void addAll(Object[] argParameters)(Code) | | Appends all of the parameters in the specified argParameters to the end of
this collection
Parameters: argParameters - the parameters to be inserted into this collection. |
addAll | public void addAll(int index, Parameters argParameters)(Code) | | Inserts all of the elements in the specified Collection into this
collection, starting at the specified position. Shifts the element
currently at that position (if any) and any subsequent elements to
the right (increases their indices).
Parameters: index - index at which to insert first elementfrom the specified collection. Parameters: argParameters - the parameters to be inserted into this collection. |
createParameter | protected Parameter createParameter(ColumnType type, Object value)(Code) | | Factory method
Parameters: type - type column type of the field this parameter corresponds to Parameters: value - value of this parameter. new Parameter |
Fields inherited from com.completex.objective.components.persistency.AbstractParameters | protected ArrayList parameters(Code)(Java Doc)
|
|
|
|