net.wgen.op.db
Class ArrayParameter

java.lang.Object
  extended bynet.wgen.op.db.Parameter
      extended bynet.wgen.op.db.ArrayParameter
All Implemented Interfaces:
java.io.Serializable

public class ArrayParameter
extends Parameter

Describes an Array Parameter to a DatabaseCall.

Version:
$Id: ArrayParameter.html,v 1.2 2007/01/28 04:09:36 paulfeuer Exp $
Author:
Paul Feuer, Wireless Generation, Inc.
See Also:
Serialized Form

Field Summary
private  java.lang.String _arrayObjectType
           
 
Fields inherited from class net.wgen.op.db.Parameter
DIR_IN, DIR_INOUT, DIR_OUT, TYPE_NOT_SET
 
Constructor Summary
ArrayParameter(java.lang.Object value, int direction, java.lang.String arrayObjectType)
          Full constructor.
ArrayParameter(java.lang.Object value, java.lang.String arrayObjectType)
          Implicit input constructor.
ArrayParameter(java.lang.String arrayObjectType)
          Implicit output constructor using the JDBC ARRAY Type for the super constructor.
 
Method Summary
 java.lang.String getArrayObjectType()
           
 
Methods inherited from class net.wgen.op.db.Parameter
getDirection, getJdbcType, getOptions, getValue, nullableNumeric, nullableNumeric, nullableString, nullableString, setOptions, setValue, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_arrayObjectType

private final java.lang.String _arrayObjectType
Constructor Detail

ArrayParameter

public ArrayParameter(java.lang.Object value,
                      java.lang.String arrayObjectType)
Implicit input constructor.

Parameters:
value - the value of the parameter
arrayObjectType - the array descriptor

ArrayParameter

public ArrayParameter(java.lang.Object value,
                      int direction,
                      java.lang.String arrayObjectType)
Full constructor.

Parameters:
value - the value of the parameter
direction - the direction whether IN, OUT, or IN_OUT
arrayObjectType - the array descriptor

ArrayParameter

public ArrayParameter(java.lang.String arrayObjectType)
Implicit output constructor using the JDBC ARRAY Type for the super constructor.

Parameters:
arrayObjectType - the array descriptor
Method Detail

getArrayObjectType

public java.lang.String getArrayObjectType()