Uses of Class
org.asnlab.asndt.runtime.type.Buffer
Packages that use Buffer
Package
Description
This package contains the AsnConverters which are resposible for converting object to ASN.1 runtime standard values.
This package contains the ASN.1 runtime metadata type definitions.
-
Uses of Buffer in org.asnlab.asndt.runtime.conv
Methods in org.asnlab.asndt.runtime.conv with parameters of type BufferModifier and TypeMethodDescriptionvoid
BigIntegerConverter.convert
(Object object, Buffer buffer, org.asnlab.asndt.runtime.type.IntegerType type, org.asnlab.asndt.runtime.type.Codec codec) BigIntegerConverter.convert
(Buffer buffer, org.asnlab.asndt.runtime.type.IntegerType type, org.asnlab.asndt.runtime.type.Codec codec) void
IntegerConverter.convert
(Object object, Buffer buffer, org.asnlab.asndt.runtime.type.IntegerType type, org.asnlab.asndt.runtime.type.Codec codec) IntegerConverter.convert
(Buffer buffer, org.asnlab.asndt.runtime.type.IntegerType type, org.asnlab.asndt.runtime.type.Codec codec) void
LongConverter.convert
(Object object, Buffer buffer, org.asnlab.asndt.runtime.type.IntegerType type, org.asnlab.asndt.runtime.type.Codec codec) LongConverter.convert
(Buffer buffer, org.asnlab.asndt.runtime.type.IntegerType type, org.asnlab.asndt.runtime.type.Codec codec) void
ZahlenConverter.convert
(Object object, Buffer buffer, org.asnlab.asndt.runtime.type.IntegerType type, org.asnlab.asndt.runtime.type.Codec codec) ZahlenConverter.convert
(Buffer buffer, org.asnlab.asndt.runtime.type.IntegerType type, org.asnlab.asndt.runtime.type.Codec codec) -
Uses of Buffer in org.asnlab.asndt.runtime.type
Methods in org.asnlab.asndt.runtime.type that return BufferModifier and TypeMethodDescriptionstatic Buffer
Buffer.allocate
(int length, byte encodingRules) Allocates a new buffer.final Buffer
Buffer.autoExpand()
Sets this buffer to auto-expandable.final Buffer
Buffer.autoExpand
(int byIncrement) Sets this buffer to auto-expandable.final Buffer
Buffer.clear()
Clears this buffer.final Buffer
Buffer.flip()
Flips this buffer.final Buffer
Buffer.limit
(int newLimit) Sets this buffer's limit.static Buffer
Buffer.newStreamBuffer
(InputStream in, int length, byte encodingRules) Create a new buffer with the specific underlying input streamstatic Buffer
Buffer.newStreamBuffer
(OutputStream out, int length, byte encodingRules) Create a new buffer with the specific underlying output streamfinal Buffer
Buffer.offset
(int offset) Buffer.position
(int newPosition) Sets this buffer's position.final Buffer
Buffer.verbose()
static Buffer
Buffer.wrap
(byte[] array, byte encodingRules) Wraps a byte array into a buffer.Methods in org.asnlab.asndt.runtime.type with parameters of type BufferModifier and TypeMethodDescriptionAsnType.decode
(Buffer buffer, AsnConverter converter) Decode object from buffer.void
AsnType.encode
(Object object, Buffer buffer, AsnConverter converter) Encode the object into buffer.