Record Class NotCondition
java.lang.Object
java.lang.Record
net.minecraftforge.common.crafting.conditions.NotCondition
- All Implemented Interfaces:
ICondition
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraftforge.common.crafting.conditions.ICondition
ICondition.IContext -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final IConditionThe field for thechildrecord component.static final com.mojang.serialization.MapCodec<NotCondition> Fields inherited from interface net.minecraftforge.common.crafting.conditions.ICondition
DEFAULT_FIELD, OPTIONAL_FEILD_CODEC, SAFE_CODEC -
Constructor Summary
ConstructorsConstructorDescriptionNotCondition(ICondition child) Creates an instance of aNotConditionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionchild()Returns the value of thechildrecord component.com.mojang.serialization.MapCodec<? extends ICondition> codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleantest(ICondition.IContext context, com.mojang.serialization.DynamicOps<?> ops) toString()Returns a string representation of this record class.
-
Field Details
-
child
The field for thechildrecord component. -
CODEC
-
-
Constructor Details
-
NotCondition
Creates an instance of aNotConditionrecord class.- Parameters:
child- the value for thechildrecord component
-
-
Method Details
-
test
- Specified by:
testin interfaceICondition
-
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. -
codec
- Specified by:
codecin interfaceICondition
-
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). -
child
Returns the value of thechildrecord component.- Returns:
- the value of the
childrecord component
-