Record Class BeeDebugPayload
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.custom.BeeDebugPayload
- All Implemented Interfaces:
CustomPacketPayload
public record BeeDebugPayload(BeeDebugPayload.BeeInfo beeInfo)
extends Record
implements CustomPacketPayload
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload
CustomPacketPayload.FallbackProvider<B extends FriendlyByteBuf>, CustomPacketPayload.Type<T extends CustomPacketPayload>, CustomPacketPayload.TypeAndCodec<B extends FriendlyByteBuf,T extends CustomPacketPayload> -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BeeDebugPayload.BeeInfoThe field for thebeeInforecord component.static final StreamCodec<FriendlyByteBuf, BeeDebugPayload> static final CustomPacketPayload.Type<BeeDebugPayload> -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateBeeDebugPayload(FriendlyByteBuf p_295882_) BeeDebugPayload(BeeDebugPayload.BeeInfo beeInfo) Creates an instance of aBeeDebugPayloadrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbeeInfo()Returns the value of thebeeInforecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.type()private voidwrite(FriendlyByteBuf p_295949_)
-
Field Details
-
beeInfo
The field for thebeeInforecord component. -
STREAM_CODEC
-
TYPE
-
-
Constructor Details
-
BeeDebugPayload
-
BeeDebugPayload
Creates an instance of aBeeDebugPayloadrecord class.- Parameters:
beeInfo- the value for thebeeInforecord component
-
-
Method Details
-
write
-
type
- Specified by:
typein interfaceCustomPacketPayload
-
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). -
beeInfo
Returns the value of thebeeInforecord component.- Returns:
- the value of the
beeInforecord component
-