- All Superinterfaces:
AddressablePREVIEW
MemoryAddress is a preview API of the Java platform.
- By calling
Addressable.address()PREVIEW on an instance of typeAddressablePREVIEW (e.g. a memory segment); - By invoking a downcall method handlePREVIEW which returns a pointer;
- By reading an address from memory, e.g. via
MemorySegment.get(ValueLayout.OfAddress, long)PREVIEW; and - By the invocation of an upcall stubPREVIEW which accepts a pointer.
Dereferencing memory addresses
A memory address can be read or written using various methods provided in this class (e.g.get(ValueLayout.OfInt, long)).
Each dereference method takes a value layoutPREVIEW, which specifies the size,
alignment constraints, byte order as well as the Java type associated with the dereference operation, and an offset.
For instance, to read an int from a segment, using default endianness, the following code can be used:
MemoryAddress address = ...
int value = address.get(ValueLayout.JAVA_INT, 0);
big-endian encoding, the dereference operation
can be expressed as follows:
MemoryAddress address = ...
int value = address.get(ValueLayout.JAVA_INT.withOrder(BIG_ENDIAN), 0);
- Implementation Requirements:
- Implementations of this interface are immutable, thread-safe and value-based.
- Since:
- 19
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final MemoryAddressPREVIEWThe memory address instance modelling theNULLaddress. -
Method Summary
Modifier and TypeMethodDescriptionaddOffset(long offset) Returns a memory address at given offset from this address.booleanCompares the specified object with this address for equality.get(ValueLayout.OfAddressPREVIEW layout, long offset) Reads an address at the given offset from this address, with the given layout.booleanget(ValueLayout.OfBooleanPREVIEW layout, long offset) Reads a boolean at the given offset from this address, with the given layout.byteget(ValueLayout.OfBytePREVIEW layout, long offset) Reads a byte at the given offset from this address, with the given layout.charget(ValueLayout.OfCharPREVIEW layout, long offset) Reads a char at the given offset from this address, with the given layout.doubleget(ValueLayout.OfDoublePREVIEW layout, long offset) Reads a double at the given offset from this address, with the given layout.floatget(ValueLayout.OfFloatPREVIEW layout, long offset) Reads a float at the given offset from this address, with the given layout.intget(ValueLayout.OfIntPREVIEW layout, long offset) Reads an int at the given offset from this address, with the given layout.longget(ValueLayout.OfLongPREVIEW layout, long offset) Reads a long at the given offset from this address, with the given layout.shortget(ValueLayout.OfShortPREVIEW layout, long offset) Reads a short at the given offset from this address, with the given layout.getAtIndex(ValueLayout.OfAddressPREVIEW layout, long index) Reads an address from this address at the given index, scaled by the given layout size.chargetAtIndex(ValueLayout.OfCharPREVIEW layout, long index) Reads a char from this address at the given index, scaled by the given layout size.doublegetAtIndex(ValueLayout.OfDoublePREVIEW layout, long index) Reads a double from this address at the given index, scaled by the given layout size.floatgetAtIndex(ValueLayout.OfFloatPREVIEW layout, long index) Reads a float from this address at the given index, scaled by the given layout size.intgetAtIndex(ValueLayout.OfIntPREVIEW layout, long index) Reads an int from this address at the given index, scaled by the given layout size.longgetAtIndex(ValueLayout.OfLongPREVIEW layout, long index) Reads a long from this address at the given index, scaled by the given layout size.shortgetAtIndex(ValueLayout.OfShortPREVIEW layout, long index) Reads a short from this address at the given index, scaled by the given layout size.getUtf8String(long offset) Reads a UTF-8 encoded, null-terminated string from this address at the given offset.inthashCode()Returns the hash code value for this address.static MemoryAddressPREVIEWofLong(long value) Creates a memory address from the given long value.voidset(ValueLayout.OfAddressPREVIEW layout, long offset, AddressablePREVIEW value) Writes an address at the given offset from this address, with the given layout.voidset(ValueLayout.OfBooleanPREVIEW layout, long offset, boolean value) Writes a boolean at the given offset from this address, with the given layout.voidset(ValueLayout.OfBytePREVIEW layout, long offset, byte value) Writes a byte at the given offset from this address, with the given layout.voidset(ValueLayout.OfCharPREVIEW layout, long offset, char value) Writes a char at the given offset from this address, with the given layout.voidset(ValueLayout.OfDoublePREVIEW layout, long offset, double value) Writes a double at the given offset from this address, with the given layout.voidset(ValueLayout.OfFloatPREVIEW layout, long offset, float value) Writes a float at the given offset from this address, with the given layout.voidset(ValueLayout.OfIntPREVIEW layout, long offset, int value) Writes an int at the given offset from this address, with the given layout.voidset(ValueLayout.OfLongPREVIEW layout, long offset, long value) Writes a long at the given offset from this address, with the given layout.voidset(ValueLayout.OfShortPREVIEW layout, long offset, short value) Writes a short at the given offset from this address, with the given layout.voidsetAtIndex(ValueLayout.OfAddressPREVIEW layout, long index, AddressablePREVIEW value) Writes an address to this address at the given index, scaled by the given layout size.voidsetAtIndex(ValueLayout.OfCharPREVIEW layout, long index, char value) Writes a char to this address at the given index, scaled by the given layout size.voidsetAtIndex(ValueLayout.OfDoublePREVIEW layout, long index, double value) Writes a double to this address at the given index, scaled by the given layout size.voidsetAtIndex(ValueLayout.OfFloatPREVIEW layout, long index, float value) Writes a float to this address at the given index, scaled by the given layout size.voidsetAtIndex(ValueLayout.OfIntPREVIEW layout, long index, int value) Writes an int to this address at the given index, scaled by the given layout size.voidsetAtIndex(ValueLayout.OfLongPREVIEW layout, long index, long value) Writes a long to this address at the given index, scaled by the given layout size.voidsetAtIndex(ValueLayout.OfShortPREVIEW layout, long index, short value) Writes a short to this address at the given index, scaled by the given layout size.voidsetUtf8String(long offset, String str) Writes the given string to this address at the given offset, converting it to a null-terminated byte sequence using UTF-8 encoding.longReturns the raw long value associated with this memory address.Methods declared in interface java.lang.foreign.AddressablePREVIEW
address
-
Field Details
-
NULL
The memory address instance modelling theNULLaddress.
-
-
Method Details
-
toRawLongValue
long toRawLongValue()Returns the raw long value associated with this memory address.- Returns:
- the raw long value associated with this memory address
-
addOffset
Returns a memory address at given offset from this address.- Parameters:
offset- specified offset (in bytes), relative to this address, which should be used to create the new address. Might be negative.- Returns:
- a memory address with the given offset from current one.
-
getUtf8String
Reads a UTF-8 encoded, null-terminated string from this address at the given offset.This method always replaces malformed-input and unmappable-character sequences with this charset's default replacement string. The
CharsetDecoderclass should be used when more control over the decoding process is required.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
offset- offset in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + offset.- Returns:
- a Java string constructed from the bytes read from the given starting address (
toRowLongValue() + offset) up to (but not including) the first'\0'terminator character (assuming one is found). - Throws:
IllegalArgumentException- if the size of the UTF-8 string is greater than the largest string supported by the platform.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
setUtf8String
Writes the given string to this address at the given offset, converting it to a null-terminated byte sequence using UTF-8 encoding.This method always replaces malformed-input and unmappable-character sequences with this charset's default replacement string. The
CharsetDecoderclass should be used when more control over the decoding process is required.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
offset- offset in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + offset.str- the Java string to be written at this address.- Throws:
IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
equals
Compares the specified object with this address for equality. Returnstrueif and only if the specified object is also an address, and it refers to the same memory location as this address. -
hashCode
int hashCode()Returns the hash code value for this address. -
ofLong
Creates a memory address from the given long value.- Parameters:
value- the long value representing a raw address.- Returns:
- a memory address with the given raw long value.
-
get
Reads a byte at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.offset- offset in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + offset.- Returns:
- a byte value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
set
Writes a byte at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.offset- offset in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + offset.value- the byte value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
get
Reads a boolean at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.offset- offset in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + offset.- Returns:
- a boolean value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
set
Writes a boolean at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.offset- offset in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + offset.value- the boolean value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
get
Reads a char at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.offset- offset in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + offset.- Returns:
- a char value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
set
Writes a char at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.offset- offset in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + offset.value- the char value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
get
Reads a short at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.offset- offset in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + offset.- Returns:
- a short value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
set
Writes a short at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.offset- offset in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + offset.value- the short value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
get
Reads an int at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.offset- offset in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + offset.- Returns:
- an int value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
set
Writes an int at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.offset- offset in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + offset.value- the int value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
get
Reads a float at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.offset- offset in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + offset.- Returns:
- a float value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
set
Writes a float at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.offset- offset in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + offset.value- the float value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
get
Reads a long at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.offset- offset in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + offset.- Returns:
- a long value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
set
Writes a long at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.offset- offset in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + offset.value- the long value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
get
Reads a double at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.offset- offset in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + offset.- Returns:
- a double value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
set
Writes a double at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.offset- offset in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + offset.value- the double value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
get
Reads an address at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.offset- offset in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + offset.- Returns:
- an address value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
set
Writes an address at the given offset from this address, with the given layout.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.offset- offset in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + offset.value- the address value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
getAtIndex
Reads a char from this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.index- index in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + (index * layout.byteSize()).- Returns:
- a char value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
setAtIndex
Writes a char to this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.index- index in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + (index * layout.byteSize()).value- the char value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
getAtIndex
Reads a short from this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.index- index in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + (index * layout.byteSize()).- Returns:
- a short value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
setAtIndex
Writes a short to this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.index- index in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + (index * layout.byteSize()).value- the short value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
getAtIndex
Reads an int from this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.index- index in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + (index * layout.byteSize()).- Returns:
- an int value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
setAtIndex
Writes an int to this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.index- index in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + (index * layout.byteSize()).value- the int value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
getAtIndex
Reads a float from this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.index- index in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + (index * layout.byteSize()).- Returns:
- a float value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
setAtIndex
Writes a float to this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.index- index in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + (index * layout.byteSize()).value- the float value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
getAtIndex
Reads a long from this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.index- index in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + (index * layout.byteSize()).- Returns:
- a long value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
setAtIndex
Writes a long to this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.index- index in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + (index * layout.byteSize()).value- the long value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
getAtIndex
Reads a double from this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.index- index in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + (index * layout.byteSize()).- Returns:
- a double value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
setAtIndex
Writes a double to this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.index- index in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + (index * layout.byteSize()).value- the double value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
getAtIndex
Reads an address from this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be read.index- index in bytes (relative to this address). Might be negative. The final address of this read operation can be expressed astoRowLongValue() + (index * layout.byteSize()).- Returns:
- an address value read from this address.
- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
setAtIndex
Writes an address to this address at the given index, scaled by the given layout size.This method is restricted. Restricted methods are unsafe, and, if used incorrectly, their use might crash the JVM or, worse, silently result in memory corruption. Thus, clients should refrain from depending on restricted methods, and use safe and supported functionalities, where possible.
- Parameters:
layout- the layout of the memory region to be written.index- index in bytes (relative to this address). Might be negative. The final address of this write operation can be expressed astoRowLongValue() + (index * layout.byteSize()).value- the address value to be written.- Throws:
IllegalArgumentException- if the dereference operation is incompatible with the alignment constraints in the provided layout, or if the layout alignment is greater than its size.IllegalCallerException- if access to this method occurs from a moduleMand the command line option--enable-native-accessis specified, but does not mention the module nameM, orALL-UNNAMEDin caseMis an unnamed module.
-
MemoryAddresswhen preview features are enabled.