Record Class ConditionReference
java.lang.Object
java.lang.Record
net.minecraft.world.level.storage.loot.predicates.ConditionReference
- All Implemented Interfaces:
Predicate<LootContext>, LootContextUser, LootItemCondition, Validatable
public record ConditionReference(ResourceKey<LootItemCondition> name)
extends Record
implements LootItemCondition
-
Nested Class Summary
Nested classes/interfaces inherited from interface LootItemCondition
LootItemCondition.Builder -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final org.slf4j.Loggerstatic final MapCodec<ConditionReference> private final ResourceKey<LootItemCondition> The field for thenamerecord component.Fields inherited from interface LootItemCondition
CODEC, DIRECT_CODEC, TYPED_CODEC -
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aConditionReferencerecord class. -
Method Summary
Modifier and TypeMethodDescriptioncodec()static LootItemCondition.Builderfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.booleantest(LootContext lootContext) final StringtoString()Returns a string representation of this record class.voidvalidate(ValidationContext context) Methods inherited from interface LootContextUser
getReferencedContextParams
-
Field Details
-
name
The field for thenamerecord component. -
LOGGER
private static final org.slf4j.Logger LOGGER -
MAP_CODEC
-
-
Constructor Details
-
ConditionReference
Creates an instance of aConditionReferencerecord class.- Parameters:
name- the value for thenamerecord component
-
-
Method Details
-
codec
- Specified by:
codecin interfaceLootItemCondition
-
validate
- Specified by:
validatein interfaceLootContextUser- Specified by:
validatein interfaceValidatable
-
test
- Specified by:
testin interfacePredicate<LootContext>
-
conditionReference
-
toString
-
hashCode
-
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
-