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 - cj$a$a- named - occupied- intermediary - comp_2059- official - c- named - full- intermediary - comp_2060- official - d- named - empty- intermediary - comp_2061- official - e
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final InventoryChangedCriterion.Conditions.Slotsstatic final com.mojang.serialization.Codec<InventoryChangedCriterion.Conditions.Slots> private final NumberRange.IntRangeThe field for theemptyrecord component.private final NumberRange.IntRangeThe field for thefullrecord component.private final NumberRange.IntRangeThe field for theoccupiedrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionSlots(NumberRange.IntRange intRange, NumberRange.IntRange intRange2, NumberRange.IntRange intRange3) 
- 
Method SummaryModifier and TypeMethodDescriptionempty()Returns the value of theemptyrecord component.final booleanIndicates whether some other object is "equal to" this one.full()Returns the value of thefullrecord component.final inthashCode()Returns a hash code value for this object.occupied()Returns the value of theoccupiedrecord component.booleantest(int full, int empty, int occupied) final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
occupiedThe field for theoccupiedrecord component.
- 
fullThe field for thefullrecord component.
- 
emptyThe field for theemptyrecord component.
- 
CODECpublic 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- Lcj$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- Lcj$a$a;b:Lcj$a$a;
 
 
- 
- 
Constructor Details- 
Slotspublic Slots(NumberRange.IntRange intRange, NumberRange.IntRange intRange2, NumberRange.IntRange intRange3) 
 
- 
- 
Method Details- 
testpublic 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- Lcj$a$a;a(III)Z
 
- 
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).
- 
occupiedReturns the value of theoccupiedrecord component.- Returns:
- the value of the occupiedrecord component
 
- 
fullReturns the value of thefullrecord component.- Returns:
- the value of the fullrecord component
 
- 
emptyReturns the value of theemptyrecord component.- Returns:
- the value of the emptyrecord component
 
 
-