Package net.minecraft.item
Record Class CrossbowItem.LoadingSounds
java.lang.Object
java.lang.Record
net.minecraft.item.CrossbowItem.LoadingSounds
- Record Components:
start
-mid
-end
-
- Enclosing class:
CrossbowItem
public static record CrossbowItem.LoadingSounds(Optional<RegistryEntry<SoundEvent>> start, Optional<RegistryEntry<SoundEvent>> mid, Optional<RegistryEntry<SoundEvent>> end)
extends Record
- Mappings:
Namespace Name named net/minecraft/item/CrossbowItem$LoadingSounds
intermediary net/minecraft/class_1764$class_9693
official ctc$a
named start
intermediary comp_2673
official b
named mid
intermediary comp_2674
official c
named end
intermediary comp_2675
official d
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<CrossbowItem.LoadingSounds> private final Optional
<RegistryEntry<SoundEvent>> The field for theend
record component.private final Optional
<RegistryEntry<SoundEvent>> The field for themid
record component.private final Optional
<RegistryEntry<SoundEvent>> The field for thestart
record component. -
Constructor Summary
ConstructorDescriptionLoadingSounds
(Optional<RegistryEntry<SoundEvent>> optional, Optional<RegistryEntry<SoundEvent>> optional2, Optional<RegistryEntry<SoundEvent>> optional3) -
Method Summary
Modifier and TypeMethodDescriptionend()
Returns the value of theend
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.mid()
Returns the value of themid
record component.start()
Returns the value of thestart
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
start
The field for thestart
record component. -
mid
The field for themid
record component. -
end
The field for theend
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/item/CrossbowItem$LoadingSounds;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_51627
Lnet/minecraft/class_1764$class_9693;field_51627:Lcom/mojang/serialization/Codec;
official a
Lctc$a;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
LoadingSounds
public LoadingSounds(Optional<RegistryEntry<SoundEvent>> optional, Optional<RegistryEntry<SoundEvent>> optional2, Optional<RegistryEntry<SoundEvent>> optional3)
-
-
Method Details
-
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)
. -
start
Returns the value of thestart
record component.- Returns:
- the value of the
start
record component
-
mid
Returns the value of themid
record component.- Returns:
- the value of the
mid
record component
-
end
Returns the value of theend
record component.- Returns:
- the value of the
end
record component
-