Record Class ItemExistsCondition
java.lang.Object
java.lang.Record
net.minecraftforge.common.crafting.conditions.ItemExistsCondition
- All Implemented Interfaces:
- ICondition
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraftforge.common.crafting.conditions.IConditionICondition.IContext
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ItemExistsCondition>private final ResourceLocationThe field for theitemrecord component.Fields inherited from interface net.minecraftforge.common.crafting.conditions.IConditionDEFAULT_FIELD, OPTIONAL_FEILD_CODEC, SAFE_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionCreates an instance of aItemExistsConditionrecord class.
- 
Method SummaryModifier and TypeMethodDescriptioncom.mojang.serialization.Codec<? extends ICondition>codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.item()Returns the value of theitemrecord component.booleantest(ICondition.IContext context) toString()Returns a string representation of this record class.
- 
Field Details- 
itemThe field for theitemrecord component.
- 
CODEC
 
- 
- 
Constructor Details- 
ItemExistsConditionCreates an instance of aItemExistsConditionrecord class.- Parameters:
- item- the value for the- itemrecord component
 
 
- 
- 
Method Details- 
test- Specified by:
- testin interface- ICondition
 
- 
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.
- 
codec- Specified by:
- codecin interface- ICondition
 
- 
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).
- 
itemReturns the value of theitemrecord component.- Returns:
- the value of the itemrecord component
 
 
-