Module org.glavo.classfile
Package org.glavo.classfile.impl
Record Class StackMapDecoder.UninitializedVerificationTypeInfoImpl
java.lang.Object
java.lang.Record
org.glavo.classfile.impl.StackMapDecoder.UninitializedVerificationTypeInfoImpl
- All Implemented Interfaces:
StackMapFrameInfo.UninitializedVerificationTypeInfo,StackMapFrameInfo.VerificationTypeInfo
- Enclosing class:
StackMapDecoder
public static record StackMapDecoder.UninitializedVerificationTypeInfoImpl(Label newTarget)
extends Record
implements StackMapFrameInfo.UninitializedVerificationTypeInfo
-
Constructor Summary
ConstructorsConstructorDescriptionUninitializedVerificationTypeInfoImpl(Label newTarget) Creates an instance of aUninitializedVerificationTypeInfoImplrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thenewTargetrecord component.inttag()Returns the tag of the type info.toString()Returns a string representation of this record class.
-
Constructor Details
-
UninitializedVerificationTypeInfoImpl
Creates an instance of aUninitializedVerificationTypeInfoImplrecord class.- Parameters:
newTarget- the value for thenewTargetrecord component
-
-
Method Details
-
tag
public int tag()Description copied from interface:StackMapFrameInfo.VerificationTypeInfoReturns the tag of the type info.- Specified by:
tagin interfaceStackMapFrameInfo.VerificationTypeInfo- Returns:
- the tag of the type info
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
newTarget
Returns the value of thenewTargetrecord component.- Specified by:
newTargetin interfaceStackMapFrameInfo.UninitializedVerificationTypeInfo- Returns:
- the value of the
newTargetrecord component
-