- All Implemented Interfaces:
Constable
,MemoryLayout
public final class GroupLayout extends Object
MemoryLayout.ofStruct(MemoryLayout...)
); conversely, if all member layouts are laid out at the same starting offset,
the resulting group layout is said to be a union (see MemoryLayout.ofUnion(MemoryLayout...)
).
This is a value-based
class; use of identity-sensitive operations (including reference equality
(==
), identity hash code, or synchronization) on instances of
GroupLayout
may have unpredictable results and should be avoided.
The equals
method should be used for comparisons.
- Implementation Requirements:
- This class is immutable and thread-safe.
-
Nested Class Summary
Nested classes/interfaces declared in interface jdk.incubator.foreign.MemoryLayout
MemoryLayout.PathElement
-
Method Summary
Modifier and Type Method Description long
bitAlignment()
Returns the alignment constraint associated with this layout, expressed in bits.long
bitSize()
Computes the layout size, in bits.Optional<DynamicConstantDesc<GroupLayout>>
describeConstable()
boolean
equals(Object other)
Indicates whether some other object is "equal to" this one.int
hashCode()
Returns a hash code value for the object.boolean
hasSize()
Does this layout have a specified size?boolean
isStruct()
Is this group layout a struct?boolean
isUnion()
Is this group layout a union?List<MemoryLayout>
memberLayouts()
Returns the member layouts associated with this group.Optional<String>
name()
Return the name (if any) associated with this layout.GroupLayout
withBitAlignment(long alignmentBits)
Creates a new layout which features the desired alignment constraint.GroupLayout
withName(String name)
Creates a new layout which features the desired layout name.Methods declared in class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods declared in interface jdk.incubator.foreign.MemoryLayout
byteAlignment, byteSize, map, offset, select, toString, varHandle
-
Method Details
-
memberLayouts
Returns the member layouts associated with this group.- API Note:
- the order in which member layouts are returned is the same order in which member layouts have
been passed to one of the group layout factory methods (see
MemoryLayout.ofStruct(MemoryLayout...)
,MemoryLayout.ofUnion(MemoryLayout...)
). - Returns:
- the member layouts associated with this group.
-
isStruct
public boolean isStruct()Is this group layout a struct?- Returns:
- true, if this group layout is a struct.
-
isUnion
public boolean isUnion()Is this group layout a union?- Returns:
- true, if this group layout is a union.
-
equals
Description copied from class:Object
Indicates whether some other object is "equal to" this one.The
equals
method implements an equivalence relation on non-null object references:- It is reflexive: for any non-null reference value
x
,x.equals(x)
should returntrue
. - It is symmetric: for any non-null reference values
x
andy
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any non-null reference values
x
,y
, andz
, ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
. - It is consistent: for any non-null reference values
x
andy
, multiple invocations ofx.equals(y)
consistently returntrue
or consistently returnfalse
, provided no information used inequals
comparisons on the objects is modified. - For any non-null reference value
x
,x.equals(null)
should returnfalse
.
The
equals
method for classObject
implements the most discriminating possible equivalence relation on objects; that is, for any non-null reference valuesx
andy
, this method returnstrue
if and only ifx
andy
refer to the same object (x == y
has the valuetrue
).Note that it is generally necessary to override the
hashCode
method whenever this method is overridden, so as to maintain the general contract for thehashCode
method, which states that equal objects must have equal hash codes.- Specified by:
equals
in interfaceMemoryLayout
- Parameters:
other
- the reference object with which to compare.- Returns:
true
if this object is the same as the obj argument;false
otherwise.- See Also:
Object.hashCode()
,HashMap
- It is reflexive: for any non-null reference value
-
hashCode
public int hashCode()Description copied from class:Object
Returns a hash code value for the object. This method is supported for the benefit of hash tables such as those provided byHashMap
.The general contract of
hashCode
is:- Whenever it is invoked on the same object more than once during
an execution of a Java application, the
hashCode
method must consistently return the same integer, provided no information used inequals
comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application. - If two objects are equal according to the
equals(Object)
method, then calling thehashCode
method on each of the two objects must produce the same integer result. - It is not required that if two objects are unequal
according to the
Object.equals(java.lang.Object)
method, then calling thehashCode
method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables.
- Specified by:
hashCode
in interfaceMemoryLayout
- Returns:
- a hash code value for this object.
- See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
- Whenever it is invoked on the same object more than once during
an execution of a Java application, the
-
describeConstable
Description copied from interface:MemoryLayout
-
withName
Creates a new layout which features the desired layout name.- Specified by:
withName
in interfaceMemoryLayout
- Parameters:
name
- the layout name.- Returns:
- a new layout which is the same as this layout, except for the name associated to it.
- See Also:
MemoryLayout.name()
-
withBitAlignment
Creates a new layout which features the desired alignment constraint.- Specified by:
withBitAlignment
in interfaceMemoryLayout
- Parameters:
alignmentBits
- the layout alignment constraint, expressed in bits.- Returns:
- a new layout which is the same as this layout, except for the alignment constraint associated to it.
-
name
Description copied from interface:MemoryLayout
Return the name (if any) associated with this layout.- Specified by:
name
in interfaceMemoryLayout
- Returns:
- the layout name (if any).
- See Also:
MemoryLayout.withName(String)
-
bitAlignment
public final long bitAlignment()Description copied from interface:MemoryLayout
Returns the alignment constraint associated with this layout, expressed in bits. Layout alignment defines a power of twoA
which is the bit-wise alignment of the layout. IfA <= 8
thenA/8
is the number of bytes that must be aligned for any pointer that correctly points to this layout. Thus:A=8
means unaligned (in the usual sense), which is common in packets.A=64
means word aligned (on LP64),A=32
int aligned,A=16
short aligned, etc.A=512
is the most strict alignment required by the x86/SV ABI (for AVX-512 data).
MemoryLayout.withBitAlignment(long)
), then this method returns the natural alignment constraint (in bits) associated with this layout.- Specified by:
bitAlignment
in interfaceMemoryLayout
- Returns:
- the layout alignment constraint, in bits.
-
hasSize
public boolean hasSize()Description copied from interface:MemoryLayout
Does this layout have a specified size? A layout does not have a specified size if it is (or contains) a sequence layout whose size is unspecified (seeSequenceLayout.elementCount()
). Value layouts (seeValueLayout
) and padding layouts (seeMemoryLayout.ofPaddingBits(long)
) always have a specified size, therefore this method always returnstrue
in these cases.- Specified by:
hasSize
in interfaceMemoryLayout
- Returns:
true
, if this layout has a specified size.
-
bitSize
public long bitSize()Description copied from interface:MemoryLayout
Computes the layout size, in bits.- Specified by:
bitSize
in interfaceMemoryLayout
- Returns:
- the layout size, in bits.
-