Record Class ConditionReference
java.lang.Object
java.lang.Record
net.minecraft.world.level.storage.loot.predicates.ConditionReference
- All Implemented Interfaces:
Predicate<LootContext>,LootContextUser,LootItemCondition
public record ConditionReference(ResourceKey<LootItemCondition> name)
extends Record
implements LootItemCondition
A LootItemCondition that refers to another LootItemCondition by its ID.
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.world.level.storage.loot.predicates.LootItemCondition
LootItemCondition.Builder -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<ConditionReference> private static final org.slf4j.Loggerprivate final ResourceKey<LootItemCondition> The field for thenamerecord component.Fields inherited from interface net.minecraft.world.level.storage.loot.predicates.LootItemCondition
DIRECT_CODEC, TYPED_CODEC -
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aConditionReferencerecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic LootItemCondition.Builderfinal booleanIndicates whether some other object is "equal to" this one.getType()final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.booleantest(LootContext pContext) final StringtoString()Returns a string representation of this record class.voidvalidate(ValidationContext p_81560_) Validate that this object is used correctly according to the given ValidationContext.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.world.level.storage.loot.LootContextUser
getReferencedContextParams
-
Field Details
-
name
The field for thenamerecord component. -
LOGGER
private static final org.slf4j.Logger LOGGER -
CODEC
-
-
Constructor Details
-
ConditionReference
Creates an instance of aConditionReferencerecord class.- Parameters:
name- the value for thenamerecord component
-
-
Method Details
-
getType
- Specified by:
getTypein interfaceLootItemCondition
-
validate
Description copied from interface:LootContextUserValidate that this object is used correctly according to the given ValidationContext.- Specified by:
validatein interfaceLootContextUser
-
test
- Specified by:
testin interfacePredicate<LootContext>
-
conditionReference
-
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). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-