Record Class OffscreenRenderer.PendingResult
java.lang.Object
java.lang.Record
de.luckymcdev.foundryengine.client.imgui.OffscreenRenderer.PendingResult
- Enclosing class:
OffscreenRenderer
-
Constructor Summary
ConstructorsConstructorDescriptionPendingResult(String key, com.mojang.blaze3d.platform.NativeImage image) Creates an instance of aPendingResultrecord 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.com.mojang.blaze3d.platform.NativeImageimage()Returns the value of theimagerecord component.key()Returns the value of thekeyrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
PendingResult
Creates an instance of aPendingResultrecord class.- Parameters:
key- the value for thekeyrecord componentimage- the value for theimagerecord component
-
-
Method Details
-
toString
-
hashCode
-
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). -
key
Returns the value of thekeyrecord component.- Returns:
- the value of the
keyrecord component
-
image
public com.mojang.blaze3d.platform.NativeImage image()Returns the value of theimagerecord component.- Returns:
- the value of the
imagerecord component
-