Imported GNU Classpath 0.90
Imported GNU Classpath 0.90 * scripts/makemake.tcl: LocaleData.java moved to gnu/java/locale. * sources.am: Regenerated. * gcj/javaprims.h: Regenerated. * Makefile.in: Regenerated. * gcj/Makefile.in: Regenerated. * include/Makefile.in: Regenerated. * testsuite/Makefile.in: Regenerated. * gnu/java/lang/VMInstrumentationImpl.java: New override. * gnu/java/net/local/LocalSocketImpl.java: Likewise. * gnu/classpath/jdwp/VMMethod.java: Likewise. * gnu/classpath/jdwp/VMVirtualMachine.java: Update to latest interface. * java/lang/Thread.java: Add UncaughtExceptionHandler. * java/lang/reflect/Method.java: Implements GenericDeclaration and isSynthetic(), * java/lang/reflect/Field.java: Likewise. * java/lang/reflect/Constructor.java * java/lang/Class.java: Implements Type, GenericDeclaration, getSimpleName() and getEnclosing*() methods. * java/lang/Class.h: Add new public methods. * java/lang/Math.java: Add signum(), ulp() and log10(). * java/lang/natMath.cc (log10): New function. * java/security/VMSecureRandom.java: New override. * java/util/logging/Logger.java: Updated to latest classpath version. * java/util/logging/LogManager.java: New override. From-SVN: r113887
This commit is contained in:
parent
eaec4980e1
commit
4f9533c772
1640 changed files with 126485 additions and 104808 deletions
|
@ -1,5 +1,5 @@
|
|||
/* Clob.java -- Access Character Large OBjects
|
||||
Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 1999, 2000, 2002, 2006 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
|
@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
|
|||
obligated to do so. If you do not wish to do so, delete this
|
||||
exception statement from your version. */
|
||||
|
||||
|
||||
package java.sql;
|
||||
|
||||
import java.io.InputStream;
|
||||
|
@ -43,110 +44,144 @@ import java.io.Reader;
|
|||
import java.io.Writer;
|
||||
|
||||
/**
|
||||
* This interface contains methods for accessing a SQL CLOB (Character
|
||||
* Large OBject) type.
|
||||
*
|
||||
* This interface contains methods for accessing a SQL CLOB (Character Large
|
||||
* OBject) type.
|
||||
*
|
||||
* @author Aaron M. Renn (arenn@urbanophile.com)
|
||||
*/
|
||||
public interface Clob
|
||||
public interface Clob
|
||||
{
|
||||
/**
|
||||
* This method returns the number of characters in the CLOB.
|
||||
*
|
||||
* @return The number of characters in the CLOB.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.2
|
||||
*/
|
||||
long length() throws SQLException;
|
||||
|
||||
/**
|
||||
* This method returns the specified portion of the CLOB as a
|
||||
* <code>String</code>.
|
||||
*
|
||||
* @param offset The index into the CLOB (index values start at 1) to
|
||||
* start returning characters from.
|
||||
* @param length The requested number of characters to return.
|
||||
* @return The requested CLOB section, as a <code>String</code>.
|
||||
* This method returns the number of characters in this <code>Clob</code>.
|
||||
*
|
||||
* @return The number of characters in this <code>Clob</code>.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.2
|
||||
*/
|
||||
String getSubString(long pos, int length) throws SQLException;
|
||||
long length() throws SQLException;
|
||||
|
||||
/**
|
||||
* This method returns a character stream that reads the contents of the
|
||||
* CLOB.
|
||||
*
|
||||
* @return A character stream to read the CLOB's contents.
|
||||
* This method returns the specified portion of this <code>Clob</code> as a
|
||||
* <code>String</code>.
|
||||
*
|
||||
* @param start The index into this <code>Clob</code> (index values
|
||||
* start at 1) to start returning characters from.
|
||||
* @param count The requested number of characters to return.
|
||||
* @return The requested <code>Clob</code> section, as a <code>String</code>.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.2
|
||||
*/
|
||||
String getSubString(long start, int count) throws SQLException;
|
||||
|
||||
/**
|
||||
* This method returns a character stream that reads the contents of this
|
||||
* <code>Clob</code>.
|
||||
*
|
||||
* @return A character stream to read this <code>Clob</code>'s contents.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.2
|
||||
*/
|
||||
Reader getCharacterStream() throws SQLException;
|
||||
|
||||
/**
|
||||
* This method returns a byte stream that reads the contents of the
|
||||
* CLOB as a series of ASCII bytes.
|
||||
*
|
||||
* @return A stream to read the CLOB's contents.
|
||||
* This method returns a byte stream that reads the contents of this
|
||||
* <code>Clob</code> as a series of ASCII bytes.
|
||||
*
|
||||
* @return A stream to read this <code>Clob</code>'s contents.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.2
|
||||
*/
|
||||
InputStream getAsciiStream() throws SQLException;
|
||||
|
||||
/**
|
||||
* This method returns the index into the CLOB of the first occurrence of
|
||||
* the specified character pattern (supplied by the caller as a
|
||||
* <code>String</code>). The search begins at the specified index.
|
||||
*
|
||||
* @param searchstr The character pattern to search for, passed as a
|
||||
* <code>String</code>.
|
||||
* @param start. The index into the CLOB to start search (indexes start
|
||||
* at 1).
|
||||
* @return The index at which the pattern was found (indexes start at 1),
|
||||
* or -1 if the pattern was not found.
|
||||
* This method returns the index into this <code>Clob</code> of the first
|
||||
* occurrence of the specified character pattern (supplied by the caller as a
|
||||
* <code>String</code>). The search begins at the specified index.
|
||||
*
|
||||
* @param pattern The character pattern to search for, passed as a
|
||||
* <code>String</code>.
|
||||
* @param start The index into this <code>Clob</code> to start searching
|
||||
* (indices start at 1).
|
||||
* @return The index at which the pattern was found (indices start at 1), or
|
||||
* -1 if the pattern was not found.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.2
|
||||
*/
|
||||
long position(String searchstr, long start) throws SQLException;
|
||||
long position(String pattern, long start) throws SQLException;
|
||||
|
||||
/**
|
||||
* This method returns the index into the CLOB of the first occurrence of
|
||||
* the specified character pattern (supplied by the caller as a
|
||||
* <code>Clob</code>). The search begins at the specified index.
|
||||
*
|
||||
* @param searchstr The character pattern to search for, passed as a
|
||||
* <code>Clob</code>.
|
||||
* @param start. The index into the CLOB to start search (indexes start
|
||||
* at 1).
|
||||
* @return The index at which the pattern was found (indexes start at 1),
|
||||
* or -1 if the pattern was not found.
|
||||
* This method returns the index into this <code>Clob</code> of the first
|
||||
* occurrence of the specified character pattern (supplied by the caller as a
|
||||
* <code>Clob</code>). The search begins at the specified index.
|
||||
*
|
||||
* @param pattern The character pattern to search for, passed as a
|
||||
* <code>Clob</code>.
|
||||
* @param start The index into this <code>Clob</code> to start searching
|
||||
* (indices start at 1).
|
||||
* @return The index at which the pattern was found (indices start at 1), or
|
||||
* -1 if the pattern was not found.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.2
|
||||
*/
|
||||
long position(Clob searchstr, long start) throws SQLException;
|
||||
long position(Clob pattern, long start) throws SQLException;
|
||||
|
||||
/**
|
||||
* Writes the specified string into this <code>Clob</code>, starting at the
|
||||
* specified index.
|
||||
*
|
||||
* @param start The index at which the writing starts.
|
||||
* @param value The string to write.
|
||||
* @return The number of characters written.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.4
|
||||
*/
|
||||
int setString(long pos, String str) throws SQLException;
|
||||
int setString(long start, String value) throws SQLException;
|
||||
|
||||
/**
|
||||
* Writes the specified portion of a string into this <code>Clob</code>,
|
||||
* starting at the specified index.
|
||||
*
|
||||
* @param startWrite The index at which the writing starts.
|
||||
* @param value The string to write a portion of.
|
||||
* @param startRead The offset into the string where the portion to copy
|
||||
* starts.
|
||||
* @param count The number of characters to write.
|
||||
* @return The number of characters written.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.4
|
||||
*/
|
||||
int setString(long pos, String str, int offset, int len)
|
||||
throws SQLException;
|
||||
int setString(long startWrite, String value, int startRead, int count)
|
||||
throws SQLException;
|
||||
|
||||
/**
|
||||
* Returns an ASCII text stream that writes into this <code>Clob</code>,
|
||||
* starting at the specified index.
|
||||
*
|
||||
* @param start The index at which the writing starts.
|
||||
* @return An ASCII text stream to write into this <code>Clob</code>.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.4
|
||||
*/
|
||||
OutputStream setAsciiStream(long pos) throws SQLException;
|
||||
OutputStream setAsciiStream(long start) throws SQLException;
|
||||
|
||||
/**
|
||||
* Returns a character stream that writes into this <code>Clob</code>,
|
||||
* starting at the specified index.
|
||||
*
|
||||
* @param start The index at which the writing starts.
|
||||
* @return A character stream to write into this <code>Clob</code>.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.4
|
||||
*/
|
||||
Writer setCharacterStream(long pos) throws SQLException;
|
||||
Writer setCharacterStream(long start) throws SQLException;
|
||||
|
||||
/**
|
||||
* Truncates this <code>Clob</code> to be at most the specified number of
|
||||
* characters long.
|
||||
*
|
||||
* @param count The length this <code>Clob</code> is truncated to.
|
||||
* @exception SQLException If an error occurs.
|
||||
* @since 1.4
|
||||
*/
|
||||
void truncate(long len) throws SQLException;
|
||||
void truncate(long count) throws SQLException;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue