Package org.eclipse.net4j.util.io
Interface ExtendedDataOutput
- 
- All Superinterfaces:
- java.io.DataOutput
 - All Known Implementing Classes:
- DataOutputExtender,- ExtendedDataOutput.Delegating,- ExtendedDataOutputStream
 
 public interface ExtendedDataOutput extends java.io.DataOutput- Author:
- Eike Stepper
- No Implement
- This interface is not intended to be implemented by clients.
- No Extend
- This interface is not intended to be extended by clients.
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classExtendedDataOutput.Delegatingstatic classExtendedDataOutput.Stream
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwriteByteArray(byte[] b)voidwriteEnum(java.lang.Enum<?> literal)voidwriteException(java.lang.Throwable t)voidwriteObject(java.lang.Object object)voidwriteString(java.lang.String str)voidwriteVarInt(int v)voidwriteVarLong(long v)
 
- 
- 
- 
Method Detail- 
writeVarIntvoid writeVarInt(int v) throws java.io.IOException- Throws:
- java.io.IOException
- Since:
- 3.7
 
 - 
writeVarLongvoid writeVarLong(long v) throws java.io.IOException- Throws:
- java.io.IOException
- Since:
- 3.7
 
 - 
writeByteArrayvoid writeByteArray(byte[] b) throws java.io.IOException- Throws:
- java.io.IOException
 
 - 
writeObjectvoid writeObject(java.lang.Object object) throws java.io.IOException- Throws:
- java.io.IOException
 
 - 
writeStringvoid writeString(java.lang.String str) throws java.io.IOException- Throws:
- java.io.IOException
 
 - 
writeEnumvoid writeEnum(java.lang.Enum<?> literal) throws java.io.IOException- Throws:
- java.io.IOException
- Since:
- 3.0
 
 - 
writeExceptionvoid writeException(java.lang.Throwable t) throws java.io.IOException- Throws:
- java.io.IOException
- Since:
- 3.4
 
 
- 
 
-