Uses of Interface
java.lang.foreign.ValueLayout.OfBoolean
Package
Description
Provides low-level access to memory and functions outside the Java runtime.
-
Uses of ValueLayout.OfBooleanPREVIEW in java.lang.foreign
Modifier and TypeFieldDescriptionstatic final ValueLayout.OfBooleanPREVIEW
ValueLayout.JAVA_BOOLEAN
A value layout constant whose size is the same as that of a Javaboolean
, bit alignment set to 8, and byte order set toByteOrder.nativeOrder()
.Modifier and TypeMethodDescriptionValueLayout.OfBoolean.withBitAlignment
(long bitAlignment) Returns a memory layout of the same type with the same size and name as this layout, but with the specified alignment constraint (in bits).Returns a memory layout of the same type with the same size and alignment constraint as this layout, but with the specified name.Returns a value layout with the same carrier, alignment constraint and name as this value layout, but with the specified byte order.Modifier and TypeMethodDescriptiondefault boolean
MemorySegment.get
(ValueLayout.OfBooleanPREVIEW layout, long offset) Reads a boolean from this segment at the given offset, with the given layout.default void
MemorySegment.set
(ValueLayout.OfBooleanPREVIEW layout, long offset, boolean value) Writes a boolean into this segment at the given offset, with the given layout.