Searched defs:getCharacterStream (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLXML.java174 * reading APIs are called: getBinaryStream(), getCharacterStream(), getSource(), and getString().
253 * The behavior of this method is the same as ResultSet.getCharacterStream()
268 Reader getCharacterStream() throws SQLException; method in interface:SQLXML
H A DClob.java111 java.io.Reader getCharacterStream() throws SQLException; method in interface:Clob
283 * @see #getCharacterStream
346 Reader getCharacterStream(long pos, long length) throws SQLException; method in interface:Clob
H A DCallableStatement.java2138 java.io.Reader getCharacterStream(int parameterIndex) throws SQLException; method in interface:CallableStatement
2155 java.io.Reader getCharacterStream(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java477 * @deprecated use <code>getCharacterStream</code> in place of
761 * @deprecated use <code>getCharacterStream</code> instead
968 java.io.Reader getCharacterStream(int columnIndex) throws SQLException; method in interface:ResultSet
984 java.io.Reader getCharacterStream(String columnLabel) throws SQLException; method in interface:ResultSet
/openjdk7/jaxp/src/org/w3c/dom/ls/
H A DLSOutput.java83 public java.io.Writer getCharacterStream(); method in interface:LSOutput
H A DLSInput.java94 public java.io.Reader getCharacterStream(); method in interface:LSInput
/openjdk7/jaxp/src/org/xml/sax/
H A DInputSource.java326 * @see #getCharacterStream
341 public Reader getCharacterStream () method in class:InputSource
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMOutputImpl.java77 public Writer getCharacterStream(){ method in class:DOMOutputImpl
H A DDOMInputImpl.java235 public Reader getCharacterStream(){ method in class:DOMInputImpl
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialClob.java122 * return non-null for both the <code>Clob.getCharacterStream()</code>
132 * <code>Clob.getCharacterStream()</code> and <code>Clob.getAsciiStream()</code>
148 try (Reader charStream = clob.getCharacterStream()) {
150 throw new SQLException("Invalid Clob object. The call to getCharacterStream " +
198 public java.io.Reader getCharacterStream() throws SerialException { method in class:SerialClob
465 * @see #getCharacterStream
509 public Reader getCharacterStream(long pos, long length) throws SQLException { method in class:SerialClob
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLInputSource.java236 public Reader getCharacterStream() { method in class:XMLInputSource
238 } // getCharacterStream():Reader
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/parser/
H A DLSInputSAXWrapper.java47 public Reader getCharacterStream() { method in class:LSInputSAXWrapper
48 return core.getCharacterStream();
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java1552 * @deprecated use the method <code>getCharacterStream</code> instead
1809 public java.io.Reader getCharacterStream(int columnIndex) throws SQLException { method in class:JoinRowSetImpl
1810 return crsInternal.getCharacterStream(columnIndex);
1829 public java.io.Reader getCharacterStream(String columnName) throws SQLException { method in class:JoinRowSetImpl
1830 return crsInternal.getCharacterStream(columnName);
H A DJdbcRowSetImpl.java1170 * @deprecated use <code>getCharacterStream</code> in place of
1720 public java.io.Reader getCharacterStream(int columnIndex) throws SQLException { method in class:JdbcRowSetImpl
1723 return rs.getCharacterStream(columnIndex);
1738 public java.io.Reader getCharacterStream(String columnName) throws SQLException { method in class:JdbcRowSetImpl
1739 return getCharacterStream(findColumn(columnName));
H A DCachedRowSetImpl.java2778 * @deprecated use the method <code>getCharacterStream</code> instead
3066 * @see #getCharacterStream(String)
3068 public java.io.Reader getCharacterStream(int columnIndex) throws SQLException{ method in class:CachedRowSetImpl
3117 public java.io.Reader getCharacterStream(String columnName) throws SQLException { method in class:CachedRowSetImpl
3118 return getCharacterStream(getColIdxByName(columnName));
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java1781 * @deprecated use the method <code>getCharacterStream</code> instead
2028 * @see #getCharacterStream(String)
2030 public java.io.Reader getCharacterStream(int columnIndex) throws SQLException{ method in class:SyncResolverImpl
2054 public java.io.Reader getCharacterStream(String columnName) throws SQLException { method in class:SyncResolverImpl

Completed in 511 milliseconds