java.io
Interface DataOutput
- All Known Subinterfaces:
- Datagram, ObjectOutput
- All Known Implementing Classes:
- DataOutputStream, ObjectOutputStream, RandomAccessFile
public interface DataOutput
write
void write(byte[] var0)
throws IOException
- Throws:
IOException
write
void write(byte[] var0,
int var1,
int var2)
throws IOException
- Throws:
IOException
write
void write(int var0)
throws IOException
- Throws:
IOException
writeBoolean
void writeBoolean(boolean var0)
throws IOException
- Throws:
IOException
writeByte
void writeByte(int var0)
throws IOException
- Throws:
IOException
writeBytes
void writeBytes(String var0)
throws IOException
- Throws:
IOException
writeChar
void writeChar(int var0)
throws IOException
- Throws:
IOException
writeChars
void writeChars(String var0)
throws IOException
- Throws:
IOException
writeDouble
void writeDouble(double var0)
throws IOException
- Throws:
IOException
writeFloat
void writeFloat(float var0)
throws IOException
- Throws:
IOException
writeInt
void writeInt(int var0)
throws IOException
- Throws:
IOException
writeLong
void writeLong(long var0)
throws IOException
- Throws:
IOException
writeShort
void writeShort(int var0)
throws IOException
- Throws:
IOException
writeUTF
void writeUTF(String var0)
throws IOException
- Throws:
IOException
Copyright © 2006-2010 OSGi Alliance. All Rights Reserved.