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 atc
named required
intermediary comp_2333
official a
named defaultPosition
intermediary comp_2334
official b
named fixedPosition
intermediary comp_2335
official c
-
Field Summary
Modifier and TypeFieldDescriptionprivate final ResourcePackProfile.InsertionPosition
The field for thedefaultPosition
record component.private final boolean
The field for thefixedPosition
record component.private final boolean
The field for therequired
record component. -
Constructor Summary
ConstructorDescriptionResourcePackPosition
(boolean bool, ResourcePackProfile.InsertionPosition insertionPosition, boolean bool2) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedefaultPosition
record component.final boolean
Indicates whether some other object is "equal to" this one.boolean
Returns the value of thefixedPosition
record component.final int
hashCode()
Returns a hash code value for this object.boolean
required()
Returns the value of therequired
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
required
private final boolean requiredThe field for therequired
record component. -
defaultPosition
The field for thedefaultPosition
record component. -
fixedPosition
private final boolean fixedPositionThe field for thefixedPosition
record component.
-
-
Constructor Details
-
ResourcePackPosition
public ResourcePackPosition(boolean bool, ResourcePackProfile.InsertionPosition insertionPosition, boolean bool2)
-
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
required
public boolean required()Returns the value of therequired
record component.- Returns:
- the value of the
required
record component
-
defaultPosition
Returns the value of thedefaultPosition
record component.- Returns:
- the value of the
defaultPosition
record component
-
fixedPosition
public boolean fixedPosition()Returns the value of thefixedPosition
record component.- Returns:
- the value of the
fixedPosition
record component
-