Uses of Interface
java.lang.foreign.ValueLayout.OfShort
Package
Description
Provides low-level access to memory and functions outside the Java runtime.
-
Uses of ValueLayout.OfShortPREVIEW in java.lang.foreign
Modifier and TypeFieldDescriptionstatic final ValueLayout.OfShortPREVIEW
ValueLayout.JAVA_SHORT
A value layout constant whose size is the same as that of a Javashort
, byte alignment set to 2, and byte order set toByteOrder.nativeOrder()
.static final ValueLayout.OfShortPREVIEW
ValueLayout.JAVA_SHORT_UNALIGNED
An unaligned value layout constant whose size is the same as that of a Javashort
and byte order set toByteOrder.nativeOrder()
.Modifier and TypeMethodDescriptionValueLayout.OfShort.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.OfShort.withoutName()
Returns a memory layout with the same characteristics as this layout, but with no name.Modifier and TypeMethodDescriptiondefault MemorySegmentPREVIEW
SegmentAllocator.allocate
(ValueLayout.OfShortPREVIEW layout, short value) Allocates a memory segment with the given layout and initializes it with the given short value.default MemorySegmentPREVIEW
SegmentAllocator.allocateArray
(ValueLayout.OfShortPREVIEW elementLayout, short... elements) Allocates a memory segment with the given layout and initializes it with the given short elements.default short
MemorySegment.get
(ValueLayout.OfShortPREVIEW layout, long offset) Reads a short from this segment at the given offset, with the given layout.default short
MemorySegment.getAtIndex
(ValueLayout.OfShortPREVIEW layout, long index) Reads a short from this segment at the given index, scaled by the given layout size.default void
MemorySegment.set
(ValueLayout.OfShortPREVIEW layout, long offset, short value) Writes a short into this segment at the given offset, with the given layout.default void
MemorySegment.setAtIndex
(ValueLayout.OfShortPREVIEW layout, long index, short value) Writes a short into this segment at the given index, scaled by the given layout size.short[]
MemorySegment.toArray
(ValueLayout.OfShortPREVIEW elementLayout) Copy the contents of this memory segment into a new short array.