Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.derby.client.am
Class ClobWriter  view ClobWriter download ClobWriter.java

java.lang.Object
  extended byjava.io.Writer
      extended byorg.apache.derby.client.am.ClobWriter

public class ClobWriter
extends java.io.Writer


Field Summary
private  Clob clob_
           
private  long offset_
           
 
Fields inherited from class java.io.Writer
lock
 
Constructor Summary
ClobWriter()
           
ClobWriter(Clob clob, long offset)
           
 
Method Summary
 void close()
          This method closes the stream.
 void flush()
          This method forces any data that may have been buffered to be written to the underlying output device.
 void write(char[] cbuf, int off, int len)
          This method writes len char from the specified array buf starting at index offset into the array.
 void write(int c)
          This method writes a single char to the output stream.
 void write(java.lang.String str)
          This method writes all the characters in a String to the output.
 void write(java.lang.String str, int off, int len)
          This method writes len chars from the String starting at position offset.
 
Methods inherited from class java.io.Writer
write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

clob_

private Clob clob_

offset_

private long offset_
Constructor Detail

ClobWriter

public ClobWriter()

ClobWriter

public ClobWriter(Clob clob,
                  long offset)
           throws SqlException
Method Detail

write

public void write(int c)
Description copied from class: java.io.Writer
This method writes a single char to the output stream.


write

public void write(char[] cbuf,
                  int off,
                  int len)
Description copied from class: java.io.Writer
This method writes len char from the specified array buf starting at index offset into the array.

Subclasses must provide an implementation of this abstract method.


write

public void write(java.lang.String str)
Description copied from class: java.io.Writer
This method writes all the characters in a String to the output.


write

public void write(java.lang.String str,
                  int off,
                  int len)
Description copied from class: java.io.Writer
This method writes len chars from the String starting at position offset.


flush

public void flush()
Description copied from class: java.io.Writer
This method forces any data that may have been buffered to be written to the underlying output device. Please note that the host environment might perform its own buffering unbeknowst to Java. In that case, a write made (for example, to a disk drive) might be cached in OS buffers instead of actually being written to disk.


close

public void close()
           throws java.io.IOException
Description copied from class: java.io.Writer
This method closes the stream. Any internal or native resources associated with this stream are freed. Any subsequent attempt to access the stream might throw an exception.

This method in this class does nothing.