
org.dbunit.ext.oracle.OracleSdoElemInfoArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pack200anttasks Show documentation
Show all versions of pack200anttasks Show documentation
old version of pack200anttasks
The newest version!
/*
*
* The DbUnit Database Testing Framework
* Copyright (C)2002-2008, DbUnit.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
package org.dbunit.ext.oracle;
import java.sql.SQLException;
import java.sql.Connection;
import oracle.jdbc.OracleTypes;
import oracle.sql.ORAData;
import oracle.sql.ORADataFactory;
import oracle.sql.Datum;
import oracle.sql.ARRAY;
import oracle.sql.ArrayDescriptor;
import oracle.jpub.runtime.MutableArray;
/**
* This class was generated by oracle jpub.
*
* @see OracleSdoGeometryDataType
* @author [email protected]
* @author Last changed by: $Author$
* @version $Revision$ $Date$
* @since ?
*/
public class OracleSdoElemInfoArray implements ORAData, ORADataFactory
{
public static final String _SQL_NAME = "MDSYS.SDO_ELEM_INFO_ARRAY";
public static final int _SQL_TYPECODE = OracleTypes.ARRAY;
MutableArray _array;
private static final OracleSdoElemInfoArray _OracleSdoElemInfoArrayFactory = new OracleSdoElemInfoArray();
public static ORADataFactory getORADataFactory()
{ return _OracleSdoElemInfoArrayFactory; }
/* constructors */
public OracleSdoElemInfoArray()
{
this((java.math.BigDecimal[])null);
}
public OracleSdoElemInfoArray(java.math.BigDecimal[] a)
{
_array = new MutableArray(2, a, null);
}
/* ORAData interface */
public Datum toDatum(Connection c) throws SQLException
{
return _array.toDatum(c, _SQL_NAME);
}
/* ORADataFactory interface */
public ORAData create(Datum d, int sqlType) throws SQLException
{
if (d == null) return null;
OracleSdoElemInfoArray a = new OracleSdoElemInfoArray();
a._array = new MutableArray(2, (ARRAY) d, null);
return a;
}
public int length() throws SQLException
{
return _array.length();
}
public int getBaseType() throws SQLException
{
return _array.getBaseType();
}
public String getBaseTypeName() throws SQLException
{
return _array.getBaseTypeName();
}
public ArrayDescriptor getDescriptor() throws SQLException
{
return _array.getDescriptor();
}
/* array accessor methods */
public java.math.BigDecimal[] getArray() throws SQLException
{
return (java.math.BigDecimal[]) _array.getObjectArray();
}
public java.math.BigDecimal[] getArray(long index, int count) throws SQLException
{
return (java.math.BigDecimal[]) _array.getObjectArray(index, count);
}
public void setArray(java.math.BigDecimal[] a) throws SQLException
{
_array.setObjectArray(a);
}
public void setArray(java.math.BigDecimal[] a, long index) throws SQLException
{
_array.setObjectArray(a, index);
}
public java.math.BigDecimal getElement(long index) throws SQLException
{
return (java.math.BigDecimal) _array.getObjectElement(index);
}
public void setElement(java.math.BigDecimal a, long index) throws SQLException
{
_array.setObjectElement(a, index);
}
public String toString()
{ try { String r = "MDSYS.SDO_ELEM_INFO_ARRAY" + "(";
java.math.BigDecimal[] a = (java.math.BigDecimal[])getArray();
for (int i=0; i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy