W3cubDocs

/OpenJDK 25

Interface ValueLayout.OfFloat

All Superinterfaces:
MemoryLayout, ValueLayout
Enclosing interface:
ValueLayout
public static sealed interface ValueLayout.OfFloat extends ValueLayout
A value layout whose carrier is float.class.
Since:
22
See Also:

Nested Class Summary

Nested classes/interfaces declared in interface MemoryLayout

MemoryLayout.PathElement

Field Summary

Method Summary

Modifier and Type Method Description
ValueLayout.OfFloat withByteAlignment(long byteAlignment)
Returns a memory layout with the same characteristics as this layout, but with the given alignment constraint (in bytes).
ValueLayout.OfFloat withName(String name)
Returns a memory layout with the same characteristics as this layout, but with the given name.
ValueLayout.OfFloat withOrder(ByteOrder order)
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.

Methods declared in interface ValueLayout

carrier, order, varHandle

Method Details

withName

ValueLayout.OfFloat withName(String name)
Returns a memory layout with the same characteristics as this layout, but with the given name.
Specified by:
withName in interface MemoryLayout
Specified by:
withName in interface ValueLayout
Parameters:
name - the layout name
Returns:
a memory layout with the same characteristics as this layout, but with the given name
See Also:

withoutName

ValueLayout.OfFloat withoutName()
Returns a memory layout with the same characteristics as this layout, but with no name.
Specified by:
withoutName in interface MemoryLayout
Specified by:
withoutName in interface ValueLayout
Returns:
a memory layout with the same characteristics as this layout, but with no name
See Also:

withByteAlignment

ValueLayout.OfFloat withByteAlignment(long byteAlignment)
Returns a memory layout with the same characteristics as this layout, but with the given alignment constraint (in bytes).
Specified by:
withByteAlignment in interface MemoryLayout
Specified by:
withByteAlignment in interface ValueLayout
Parameters:
byteAlignment - the layout alignment constraint, expressed in bytes
Returns:
a memory layout with the same characteristics as this layout, but with the given alignment constraint (in bytes)

withOrder

ValueLayout.OfFloat withOrder(ByteOrder order)
Returns a value layout with the same characteristics as this layout, but with the given byte order.
Specified by:
withOrder in interface ValueLayout
Parameters:
order - the desired byte order
Returns:
a value layout with the same characteristics as this layout, but with the given byte order

© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/foreign/ValueLayout.OfFloat.html