isql.array
Class InputArray

java.lang.Object
  extended by isql.array.Array
      extended by isql.array.InputArray
All Implemented Interfaces:
ITypedValue
Direct Known Subclasses:
BooleanArray, DateArray, NumericArray, TextArray

public abstract class InputArray
extends Array

Author:
SHZ Apr 11, 2008 isql.array.Array is very unsafe, since you can create a new instance of it passing, for example, an array of strings and telling that the array's type is boolean. With this class you are sure that the parameters are initialized using the NumericArray, TextArray,... classes, that are safer.

Constructor Summary
InputArray(java.lang.Object[] array, ColumnType type)
           
 
Method Summary
 
Methods inherited from class isql.array.Array
getArray, getSize, getType, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InputArray

public InputArray(java.lang.Object[] array,
                  ColumnType type)