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 - cvh$b- named - start- intermediary - comp_2673- official - b- named - mid- intermediary - comp_2674- official - c- named - end- intermediary - comp_2675- official - d
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<CrossbowItem.LoadingSounds> private final Optional<RegistryEntry<SoundEvent>> The field for theendrecord component.private final Optional<RegistryEntry<SoundEvent>> The field for themidrecord component.private final Optional<RegistryEntry<SoundEvent>> The field for thestartrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionLoadingSounds(Optional<RegistryEntry<SoundEvent>> optional, Optional<RegistryEntry<SoundEvent>> optional2, Optional<RegistryEntry<SoundEvent>> optional3) 
- 
Method SummaryModifier and TypeMethodDescriptionend()Returns the value of theendrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.mid()Returns the value of themidrecord component.start()Returns the value of thestartrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
startThe field for thestartrecord component.
- 
midThe field for themidrecord component.
- 
endThe field for theendrecord 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- Lcvh$b;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
LoadingSoundspublic LoadingSounds(Optional<RegistryEntry<SoundEvent>> optional, Optional<RegistryEntry<SoundEvent>> optional2, Optional<RegistryEntry<SoundEvent>> optional3) 
 
- 
- 
Method Details- 
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).
- 
startReturns the value of thestartrecord component.- Returns:
- the value of the startrecord component
 
- 
midReturns the value of themidrecord component.- Returns:
- the value of the midrecord component
 
- 
endReturns the value of theendrecord component.- Returns:
- the value of the endrecord component
 
 
-