| |
|
| java.lang.Object com.completex.objective.components.persistency.AbstractParameters
All known Subclasses: com.completex.objective.components.persistency.Parameters, com.completex.objective.components.persistency.CallParameters,
AbstractParameters | abstract public class AbstractParameters implements Listable(Code) | | Ancestor of all parameter collection types
author: Gennady Krizhevsky |
AbstractParameters | protected AbstractParameters()(Code) | | |
AbstractParameters | protected AbstractParameters(int capacity)(Code) | | Constructs an empty parameters collection with the specified initial capacity.
Parameters: capacity - |
AbstractParameters | public AbstractParameters(AbstractParameters parameters)(Code) | | Copy constructor
Parameters: parameters - input parameters tobe populated into this collection |
AbstractParameters | public AbstractParameters(Parameter[] parameters)(Code) | | Constructs parameters collection from Parameter []
Parameters: parameters - Parameter [] |
addAll | protected void addAll(AbstractParameters argParameters)(Code) | | Appends all of the parameters in the specified AbstractParameters to the end of
this collection
Parameters: argParameters - the parameters to be inserted into this list. |
get | public Parameter get(int index)(Code) | | Returns the parameter at the specified position in this collection.
Parameters: index - index of parameter to return. the parameter at the specified position in this collection. throws: IndexOutOfBoundsException - if index is out of range (index< 0 || index >= size()). |
getValue | public Object getValue(int index)(Code) | | Returns value of parameter at index
Parameters: index - parameter index value of parameter at index |
getValues | public Object[] getValues()(Code) | | Returns array of all parameter values
array of all parameter values |
hasNulls | public boolean hasNulls()(Code) | | Returns true if at least one of the parameters of this collection has value as null
true if at least one of the parameters of this collection has value as null |
size | public int size()(Code) | | Returns the number of parameters in this collection.
the number of parameters in this collection. |
validateParameterType | protected void validateParameterType(Parameter parameter)(Code) | | Validates parameter type
Parameters: parameter - parameter |
|
|
|