Record Class InventoryChangedCriterion.Conditions.Slots
java.lang.Object
java.lang.Record
net.minecraft.advancement.criterion.InventoryChangedCriterion.Conditions.Slots
- Record Components:
occupied
-full
-empty
-
- Enclosing class:
InventoryChangedCriterion.Conditions
public static record InventoryChangedCriterion.Conditions.Slots(NumberRange.IntRange occupied, NumberRange.IntRange full, NumberRange.IntRange empty)
extends Record
- Mappings:
Namespace Name named net/minecraft/advancement/criterion/InventoryChangedCriterion$Conditions$Slots
intermediary net/minecraft/class_2066$class_2068$class_8948
official ce$a$a
named occupied
intermediary comp_2059
official c
named full
intermediary comp_2060
official d
named empty
intermediary comp_2061
official e
-
Field Summary
Modifier and TypeFieldDescriptionstatic final InventoryChangedCriterion.Conditions.Slots
static final com.mojang.serialization.Codec
<InventoryChangedCriterion.Conditions.Slots> private final NumberRange.IntRange
The field for theempty
record component.private final NumberRange.IntRange
The field for thefull
record component.private final NumberRange.IntRange
The field for theoccupied
record component. -
Constructor Summary
ConstructorDescriptionSlots
(NumberRange.IntRange intRange, NumberRange.IntRange intRange2, NumberRange.IntRange intRange3) -
Method Summary
Modifier and TypeMethodDescriptionempty()
Returns the value of theempty
record component.final boolean
Indicates whether some other object is "equal to" this one.full()
Returns the value of thefull
record component.final int
hashCode()
Returns a hash code value for this object.occupied()
Returns the value of theoccupied
record component.boolean
test
(int full, int empty, int occupied) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
occupied
The field for theoccupied
record component. -
full
The field for thefull
record component. -
empty
The field for theempty
record component. -
CODEC
public static final com.mojang.serialization.Codec<InventoryChangedCriterion.Conditions.Slots> CODEC- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/advancement/criterion/InventoryChangedCriterion$Conditions$Slots;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_47264
Lnet/minecraft/class_2066$class_2068$class_8948;field_47264:Lcom/mojang/serialization/Codec;
official a
Lce$a$a;a:Lcom/mojang/serialization/Codec;
-
ANY
- Mappings:
Namespace Name Mixin selector named ANY
Lnet/minecraft/advancement/criterion/InventoryChangedCriterion$Conditions$Slots;ANY:Lnet/minecraft/advancement/criterion/InventoryChangedCriterion$Conditions$Slots;
intermediary field_47265
Lnet/minecraft/class_2066$class_2068$class_8948;field_47265:Lnet/minecraft/class_2066$class_2068$class_8948;
official b
Lce$a$a;b:Lce$a$a;
-
-
Constructor Details
-
Slots
public Slots(NumberRange.IntRange intRange, NumberRange.IntRange intRange2, NumberRange.IntRange intRange3)
-
-
Method Details
-
test
public boolean test(int full, int empty, int occupied) - Mappings:
Namespace Name Mixin selector named test
Lnet/minecraft/advancement/criterion/InventoryChangedCriterion$Conditions$Slots;test(III)Z
intermediary method_54998
Lnet/minecraft/class_2066$class_2068$class_8948;method_54998(III)Z
official a
Lce$a$a;a(III)Z
-
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)
. -
occupied
Returns the value of theoccupied
record component.- Returns:
- the value of the
occupied
record component
-
full
Returns the value of thefull
record component.- Returns:
- the value of the
full
record component
-
empty
Returns the value of theempty
record component.- Returns:
- the value of the
empty
record component
-