org.apache.jute
Class BinaryOutputArchive

java.lang.Object
  extended by org.apache.jute.BinaryOutputArchive
All Implemented Interfaces:
OutputArchive

public class BinaryOutputArchive
extends Object
implements OutputArchive


Constructor Summary
BinaryOutputArchive(DataOutput out)
          Creates a new instance of BinaryOutputArchive
 
Method Summary
 void endMap(TreeMap v, String tag)
           
 void endRecord(Record r, String tag)
           
 void endVector(List v, String tag)
           
static BinaryOutputArchive getArchive(OutputStream strm)
           
 void startMap(TreeMap v, String tag)
           
 void startRecord(Record r, String tag)
           
 void startVector(List v, String tag)
           
 void writeBool(boolean b, String tag)
           
 void writeBuffer(byte[] barr, String tag)
           
 void writeByte(byte b, String tag)
           
 void writeDouble(double d, String tag)
           
 void writeFloat(float f, String tag)
           
 void writeInt(int i, String tag)
           
 void writeLong(long l, String tag)
           
 void writeRecord(Record r, String tag)
           
 void writeString(String s, String tag)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BinaryOutputArchive

public BinaryOutputArchive(DataOutput out)
Creates a new instance of BinaryOutputArchive

Method Detail

getArchive

public static BinaryOutputArchive getArchive(OutputStream strm)

writeByte

public void writeByte(byte b,
                      String tag)
               throws IOException
Specified by:
writeByte in interface OutputArchive
Throws:
IOException

writeBool

public void writeBool(boolean b,
                      String tag)
               throws IOException
Specified by:
writeBool in interface OutputArchive
Throws:
IOException

writeInt

public void writeInt(int i,
                     String tag)
              throws IOException
Specified by:
writeInt in interface OutputArchive
Throws:
IOException

writeLong

public void writeLong(long l,
                      String tag)
               throws IOException
Specified by:
writeLong in interface OutputArchive
Throws:
IOException

writeFloat

public void writeFloat(float f,
                       String tag)
                throws IOException
Specified by:
writeFloat in interface OutputArchive
Throws:
IOException

writeDouble

public void writeDouble(double d,
                        String tag)
                 throws IOException
Specified by:
writeDouble in interface OutputArchive
Throws:
IOException

writeString

public void writeString(String s,
                        String tag)
                 throws IOException
Specified by:
writeString in interface OutputArchive
Throws:
IOException

writeBuffer

public void writeBuffer(byte[] barr,
                        String tag)
                 throws IOException
Specified by:
writeBuffer in interface OutputArchive
Throws:
IOException

writeRecord

public void writeRecord(Record r,
                        String tag)
                 throws IOException
Specified by:
writeRecord in interface OutputArchive
Throws:
IOException

startRecord

public void startRecord(Record r,
                        String tag)
                 throws IOException
Specified by:
startRecord in interface OutputArchive
Throws:
IOException

endRecord

public void endRecord(Record r,
                      String tag)
               throws IOException
Specified by:
endRecord in interface OutputArchive
Throws:
IOException

startVector

public void startVector(List v,
                        String tag)
                 throws IOException
Specified by:
startVector in interface OutputArchive
Throws:
IOException

endVector

public void endVector(List v,
                      String tag)
               throws IOException
Specified by:
endVector in interface OutputArchive
Throws:
IOException

startMap

public void startMap(TreeMap v,
                     String tag)
              throws IOException
Specified by:
startMap in interface OutputArchive
Throws:
IOException

endMap

public void endMap(TreeMap v,
                   String tag)
            throws IOException
Specified by:
endMap in interface OutputArchive
Throws:
IOException