Record Class ModLoadedCondition
java.lang.Object
java.lang.Record
net.minecraftforge.common.crafting.conditions.ModLoadedCondition
- All Implemented Interfaces:
ICondition
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraftforge.common.crafting.conditions.ICondition
ICondition.IContext
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ModLoadedCondition>
private final String
The field for themodid
record component.Fields inherited from interface net.minecraftforge.common.crafting.conditions.ICondition
DEFAULT_FIELD, OPTIONAL_FEILD_CODEC, SAFE_CODEC
-
Constructor Summary
ConstructorDescriptionModLoadedCondition
(String modid) Creates an instance of aModLoadedCondition
record class. -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.Codec<? extends ICondition>
codec()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.modid()
Returns the value of themodid
record component.boolean
test
(ICondition.IContext context) toString()
Returns a string representation of this record class.
-
Field Details
-
modid
The field for themodid
record component. -
CODEC
-
-
Constructor Details
-
ModLoadedCondition
Creates an instance of aModLoadedCondition
record class.- Parameters:
modid
- the value for themodid
record component
-
-
Method Details
-
test
- Specified by:
test
in 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:
codec
in 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)
. -
modid
Returns the value of themodid
record component.- Returns:
- the value of the
modid
record component
-