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 TypeMethodDescriptionvoidBigIntegerConverter.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) voidIntegerConverter.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) voidLongConverter.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) voidZahlenConverter.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 BufferBuffer.allocate(int length, byte encodingRules) Allocates a new buffer.final BufferBuffer.autoExpand()Sets this buffer to auto-expandable.final BufferBuffer.autoExpand(int byIncrement) Sets this buffer to auto-expandable.final BufferBuffer.clear()Clears this buffer.final BufferBuffer.flip()Flips this buffer.final BufferBuffer.limit(int newLimit) Sets this buffer's limit.static BufferBuffer.newStreamBuffer(InputStream in, int length, byte encodingRules) Create a new buffer with the specific underlying input streamstatic BufferBuffer.newStreamBuffer(OutputStream out, int length, byte encodingRules) Create a new buffer with the specific underlying output streamfinal BufferBuffer.offset(int offset) Buffer.position(int newPosition) Sets this buffer's position.final BufferBuffer.verbose()static BufferBuffer.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.voidAsnType.encode(Object object, Buffer buffer, AsnConverter converter) Encode the object into buffer.