Package com.adobe.internal.io.stream
Class SkippingOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- com.adobe.internal.io.stream.SkippingOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public abstract class SkippingOutputStream extends OutputStream
AnOutputStreamthat allows skipping ahead.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidskip(long count)Skip ahead in the stream from the current position.-
Methods inherited from class java.io.OutputStream
close, flush, nullOutputStream, write, write, write
-
-
-
-
Method Detail
-
skip
public abstract void skip(long count) throws IOExceptionSkip ahead in the stream from the current position.- Parameters:
count- number of bytes to skip ahead from the current position- Throws:
IOException
-
-