Uses of Interface
java.lang.foreign.ValueLayout.OfFloat
Package
Description
Provides low-level access to memory and functions outside the Java runtime.
-
Uses of ValueLayout.OfFloat in java.lang.foreign
Modifier and TypeFieldDescriptionstatic final ValueLayout.OfFloat
ValueLayout.JAVA_FLOAT
A value layout constant whose size is the same as that of a Javafloat
, byte alignment set to 4, and byte order set toByteOrder.nativeOrder()
.static final ValueLayout.OfFloat
ValueLayout.JAVA_FLOAT_UNALIGNED
An unaligned value layout constant whose size is the same as that of a Javafloat
and byte order set toByteOrder.nativeOrder()
.Modifier and TypeMethodDescriptionValueLayout.OfFloat.withByteAlignment
(long byteAlignment) Returns a memory layout with the same characteristics as this layout, but with the given alignment constraint (in bytes).Returns a memory layout with the same characteristics as this layout, but with the given name.Returns a value layout with the same characteristics as this layout, but with the given byte order.ValueLayout.OfFloat.withoutName()
Returns a memory layout with the same characteristics as this layout, but with no name.Modifier and TypeMethodDescriptiondefault MemorySegment
SegmentAllocator.allocateFrom
(ValueLayout.OfFloat layout, float value) Returns a new memory segment initialized with the provided float value.default MemorySegment
SegmentAllocator.allocateFrom
(ValueLayout.OfFloat elementLayout, float... elements) Returns a new memory segment initialized with the elements in the provided float array.float
MemorySegment.get
(ValueLayout.OfFloat layout, long offset) Reads a float from this segment at the given offset, with the given layout.float
MemorySegment.getAtIndex
(ValueLayout.OfFloat layout, long index) Reads a float from this segment at the given index, scaled by the given layout size.void
MemorySegment.set
(ValueLayout.OfFloat layout, long offset, float value) Writes a float into this segment at the given offset, with the given layout.void
MemorySegment.setAtIndex
(ValueLayout.OfFloat layout, long index, float value) Writes a float into this segment at the given index, scaled by the given layout size.float[]
MemorySegment.toArray
(ValueLayout.OfFloat elementLayout) Copy the contents of this memory segment into a new float array.