Record Class BrandPayload
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.custom.BrandPayload
- All Implemented Interfaces:
CustomPacketPayload
-
Field Summary
Modifier and TypeFieldDescriptionprivate final String
The field for thebrand
record component.static final ResourceLocation
-
Constructor Summary
ConstructorDescriptionBrandPayload
(String brand) Creates an instance of aBrandPayload
record class.BrandPayload
(FriendlyByteBuf p_299720_) -
Method Summary
Modifier and TypeMethodDescriptionbrand()
Returns the value of thebrand
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.id()
final String
toString()
Returns a string representation of this record class.void
write
(FriendlyByteBuf p_297362_)
-
Field Details
-
brand
The field for thebrand
record component. -
ID
-
-
Constructor Details
-
BrandPayload
-
BrandPayload
Creates an instance of aBrandPayload
record class.- Parameters:
brand
- the value for thebrand
record component
-
-
Method Details
-
write
- Specified by:
write
in interfaceCustomPacketPayload
-
id
- Specified by:
id
in 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)
. -
brand
Returns the value of thebrand
record component.- Returns:
- the value of the
brand
record component
-