Package org.exbin.xbup.core.stream
Interface XBSkipableStream
-
- All Known Implementing Classes:
XBPullReader
public interface XBSkipableStreamInterface for stream with skipable tokens.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidskipAttributesXB(long childBlocksCount)Skips child blocks.voidskipChildXB(long childBlocksCount)Skips child blocks.voidskipXB(long tokenCount)Skips given count of tokens in stream.
-
-
-
Method Detail
-
skipXB
void skipXB(long tokenCount) throws XBProcessingException, java.io.IOExceptionSkips given count of tokens in stream.- Parameters:
tokenCount- count of tokens- Throws:
java.io.IOException- if input/output errorXBProcessingException
-
skipChildXB
void skipChildXB(long childBlocksCount) throws XBProcessingException, java.io.IOExceptionSkips child blocks.- Parameters:
childBlocksCount- count of child blocks to skip- Throws:
java.io.IOException- if input/output errorXBProcessingException
-
skipAttributesXB
void skipAttributesXB(long childBlocksCount) throws XBProcessingException, java.io.IOExceptionSkips child blocks.- Parameters:
childBlocksCount- count of child blocks to skip- Throws:
java.io.IOException- if input/output errorXBProcessingException
-
-