Package net.minecraft.resource
Record Class ResourcePackPosition
java.lang.Object
java.lang.Record
net.minecraft.resource.ResourcePackPosition
- Record Components:
- required-
- defaultPosition-
- fixedPosition-
public record ResourcePackPosition(boolean required, ResourcePackProfile.InsertionPosition defaultPosition, boolean fixedPosition)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/resource/ResourcePackPosition- intermediary - net/minecraft/class_9225- official - atd- named - required- intermediary - comp_2333- official - a- named - defaultPosition- intermediary - comp_2334- official - b- named - fixedPosition- intermediary - comp_2335- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final ResourcePackProfile.InsertionPositionThe field for thedefaultPositionrecord component.private final booleanThe field for thefixedPositionrecord component.private final booleanThe field for therequiredrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionResourcePackPosition(boolean bool, ResourcePackProfile.InsertionPosition insertionPosition, boolean bool2) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thedefaultPositionrecord component.final booleanIndicates whether some other object is "equal to" this one.booleanReturns the value of thefixedPositionrecord component.final inthashCode()Returns a hash code value for this object.booleanrequired()Returns the value of therequiredrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
requiredprivate final boolean requiredThe field for therequiredrecord component.
- 
defaultPositionThe field for thedefaultPositionrecord component.
- 
fixedPositionprivate final boolean fixedPositionThe field for thefixedPositionrecord component.
 
- 
- 
Constructor Details- 
ResourcePackPositionpublic ResourcePackPosition(boolean bool, ResourcePackProfile.InsertionPosition insertionPosition, boolean bool2) 
 
- 
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
requiredpublic boolean required()Returns the value of therequiredrecord component.- Returns:
- the value of the requiredrecord component
 
- 
defaultPositionReturns the value of thedefaultPositionrecord component.- Returns:
- the value of the defaultPositionrecord component
 
- 
fixedPositionpublic boolean fixedPosition()Returns the value of thefixedPositionrecord component.- Returns:
- the value of the fixedPositionrecord component
 
 
-