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