public interface RawMemoryRegionFactory
RawMemoryFactory. Implementations of this
clas can be registered there.| Modifier and Type | Method and Description |
|---|---|
RawByte |
createRawByte(long base,
int count,
int stride)
Create an instance of a class that implements
RawByte and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawByteReader |
createRawByteReader(long base,
int count,
int stride)
Create an instance of a class that implements
RawByteReader and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawByteWriter |
createRawByteWriter(long base,
int count,
int stride)
Create an instance of a class that implements
RawByteWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawDouble |
createRawDouble(long base,
int count,
int stride)
Create an instance of a class that implements
RawDouble and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawDoubleReader |
createRawDoubleReader(long base,
int count,
int stride)
Create an instance of a class that implements
RawDoubleReader and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawDoubleWriter |
createRawDoubleWriter(long base,
int count,
int stride)
Create an instance of a class that implements
RawDoubleWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawFloat |
createRawFloat(long base,
int count,
int stride)
Create an instance of a class that implements
RawFloat and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawFloatReader |
createRawFloatReader(long base,
int count,
int stride)
Create an instance of a class that implements
RawFloatReader and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawFloatWriter |
createRawFloatWriter(long base,
int count,
int stride)
Create an instance of a class that implements
RawFloatWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawInt |
createRawInt(long base,
int count,
int stride)
Create an instance of a class that implements
RawInt and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawIntReader |
createRawIntReader(long base,
int count,
int stride)
Create an instance of a class that implements
RawIntReader and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawIntWriter |
createRawIntWriter(long base,
int count,
int stride)
Create an instance of a class that implements
RawIntWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawLong |
createRawLong(long base,
int count,
int stride)
Create an instance of a class that implements
RawLong and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawLongReader |
createRawLongReader(long base,
int count,
int stride)
Create an instance of a class that implements
RawLongReader and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawLongWriter |
createRawLongWriter(long base,
int count,
int stride)
Create an instance of a class that implements
RawLongWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawShort |
createRawShort(long base,
int count,
int stride)
Create an instance of a class that implements
RawShort and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawShortReader |
createRawShortReader(long base,
int count,
int stride)
Create an instance of a class that implements
RawShortReader and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawShortWriter |
createRawShortWriter(long base,
int count,
int stride)
Create an instance of a class that implements
RawShortWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count. |
RawMemoryRegion |
getRegion()
Get the region for which this factory creates raw memory objects.
|
RawMemoryRegion getRegion()
RawByte createRawByte(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawByte and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of byte ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawByte and supports access to
the specified range in the memory region.RawByteReader createRawByteReader(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawByteReader and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of byte ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawByteReader and supports access to
the specified range in the memory region.RawByteWriter createRawByteWriter(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawByteWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of byte ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawByteWriter and supports access to
the specified range in the memory region.RawShort createRawShort(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawShort and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of short ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawShort and supports access to
the specified range in the memory region.RawShortReader createRawShortReader(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawShortReader and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of short ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawShortReader and supports access to
the specified range in the memory region.RawShortWriter createRawShortWriter(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawShortWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of short ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawShortWriter and supports access to
the specified range in the memory region.RawInt createRawInt(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawInt and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of int ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawInt and supports access to
the specified range in the memory region.RawIntReader createRawIntReader(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawIntReader and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of int ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawIntReader and supports access to
the specified range in the memory region.RawIntWriter createRawIntWriter(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawIntWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of int ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawIntWriter and supports access to
the specified range in the memory region.RawLong createRawLong(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawLong and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of long ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawLong and supports access to
the specified range in the memory region.RawLongReader createRawLongReader(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawLongReader and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of long ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawLongReader and supports access to
the specified range in the memory region.RawLongWriter createRawLongWriter(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawLongWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of long ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawLongWriter and supports access to
the specified range in the memory region.RawFloat createRawFloat(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawFloat and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of float ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawFloat and supports access to
the specified range in the memory region.RawFloatReader createRawFloatReader(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawFloatReader and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of float ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawFloatReader and supports access to
the specified range in the memory region.RawFloatWriter createRawFloatWriter(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawFloatWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of float ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawFloatWriter and supports access to
the specified range in the memory region.RawDouble createRawDouble(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawDouble and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of double ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawDouble and supports access to
the specified range in the memory region.RawDoubleReader createRawDoubleReader(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawDoubleReader and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of double ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawDoubleReader and supports access to
the specified range in the memory region.RawDoubleWriter createRawDoubleWriter(long base, int count, int stride) throws SecurityException, OffsetOutOfBoundsException, SizeOutOfBoundsException, UnsupportedRawMemoryRegionException, MemoryTypeConflictException
RawDoubleWriter and
accesses memory of getRegion() in the address range described by
base, stride, and count.
The actual extent of the memory addressed by the object is
(stride - 1) × size of double ×
count. The object is allocated in the current memory area
of the calling thread.IllegalArgumentException - when base is negative, or count is
not greater than zero.SecurityException - when the caller does not have
permissions to access the given memory region or the
specified range of addresses.OffsetOutOfBoundsException - when base is invalid.SizeOutOfBoundsException - when the memory addressed by the object
would extend into an invalid range of memory.MemoryTypeConflictException - when base does
not point to memory that matches the type served by this
factory.UnsupportedRawMemoryRegionExceptionbase - The starting physical address accessible through the
returned instance.count - The number of memory elements accessible through the
returned instance.stride - The distance to the next element in mulitple of element count.RawDoubleWriter and supports access to
the specified range in the memory region.aicas GmbH, Karlsruhe, Germany —www.aicas.com
Copyright © 2001-2016 aicas GmbH. All Rights Reserved.