Package net.minecraftforge.network
Record Class ChannelListManager.Unregister
java.lang.Object
java.lang.Record
net.minecraftforge.network.ChannelListManager.Unregister
- All Implemented Interfaces:
- CustomPacketPayload
- Enclosing class:
- ChannelListManager
private static record ChannelListManager.Unregister(List<String> channels)
extends Record
implements CustomPacketPayload
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayloadCustomPacketPayload.FallbackProvider<B extends FriendlyByteBuf>, CustomPacketPayload.Type<T extends CustomPacketPayload>, CustomPacketPayload.TypeAndCodec<B extends FriendlyByteBuf,T extends CustomPacketPayload> 
- 
Field SummaryFieldsModifier and TypeFieldDescriptionThe field for thechannelsrecord component.private static StreamCodec<FriendlyByteBuf, ChannelListManager.Unregister> private static CustomPacketPayload.Type<ChannelListManager.Unregister> 
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprivateUnregister(List<String> channels) Creates an instance of aUnregisterrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionchannels()Returns the value of thechannelsrecord 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()
- 
Field Details- 
channelsThe field for thechannelsrecord component.
- 
TYPE
- 
CODEC
 
- 
- 
Constructor Details- 
UnregisterCreates an instance of aUnregisterrecord class.- Parameters:
- channels- the value for the- channelsrecord component
 
 
- 
- 
Method Details- 
type- Specified by:
- typein interface- CustomPacketPayload
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
channelsReturns the value of thechannelsrecord component.- Returns:
- the value of the channelsrecord component
 
 
-