public class DecodingContext2 extends AbstractDecodingContext
Constructor and Description |
---|
DecodingContext2(InputStream is,
List<IDecoderHandler> decoderhandlers,
List<IDecoderHandler> postprocessors,
Object usercontext,
ClassLoader classloader,
IErrorReporter errorreporter)
Creates a new DecodingContext.
|
DecodingContext2(InputStream is,
List<IDecoderHandler> decoderhandlers,
List<IDecoderHandler> postprocessors,
Object usercontext,
ClassLoader classloader,
IErrorReporter errorreporter,
int offset)
Creates a new DecodingContext with specific offset.
|
Modifier and Type | Method and Description |
---|---|
byte[] |
read(byte[] array)
Reads a number of bytes from the buffer and fills the array.
|
byte[] |
read(int count)
Reads a number of bytes from the buffer.
|
boolean |
readBoolean()
Reads a boolean value from the buffer.
|
byte |
readByte()
Reads a byte from the buffer.
|
String |
readClassname()
Helper method for decoding a class name.
|
long |
readSignedVarInt()
Helper method for decoding a signed variable-sized integer (VarInt).
|
String |
readString()
Helper method for decoding a string.
|
long |
readVarInt()
Helper method for decoding a variable-sized integer (VarInt).
|
getClassloader, getCurrentClassName, getDecoderHandlers, getErrorReporter, getKnownObjects, getLastObject, getPostProcessors, getUserContext, setLastObject
public DecodingContext2(InputStream is, List<IDecoderHandler> decoderhandlers, List<IDecoderHandler> postprocessors, Object usercontext, ClassLoader classloader, IErrorReporter errorreporter)
classloader
- The classloader.content
- The content being decoded.public DecodingContext2(InputStream is, List<IDecoderHandler> decoderhandlers, List<IDecoderHandler> postprocessors, Object usercontext, ClassLoader classloader, IErrorReporter errorreporter, int offset)
content
- The content being decoded.offset
- The offset.public byte readByte()
public byte[] read(int count)
count
- Number of bytes.public byte[] read(byte[] array)
array
- The byte array.public boolean readBoolean()
public String readClassname()
public String readString()
public long readVarInt()
public long readSignedVarInt()
Copyright © 2015. All Rights Reserved.