Record Class InvertedLootItemCondition
java.lang.Object
java.lang.Record
net.minecraft.world.level.storage.loot.predicates.InvertedLootItemCondition
- All Implemented Interfaces:
Predicate<LootContext>, LootContextUser, LootItemCondition, Validatable
public record InvertedLootItemCondition(LootItemCondition term)
extends Record
implements LootItemCondition
A LootItemCondition that inverts the output of another one.
-
Nested Class Summary
Nested classes/interfaces inherited from interface LootItemCondition
LootItemCondition.Builder -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<InvertedLootItemCondition> private final LootItemConditionThe field for thetermrecord component.Fields inherited from interface LootItemCondition
CODEC, DIRECT_CODEC, TYPED_CODEC -
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aInvertedLootItemConditionrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.MapCodec<InvertedLootItemCondition> codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.static LootItemCondition.Builderterm()Returns the value of thetermrecord component.booleantest(LootContext context) final StringtoString()Returns a string representation of this record class.voidvalidate(ValidationContext output) Validate that this object is used correctly according to the given ValidationContext.Methods inherited from interface LootContextUser
getReferencedContextParams
-
Field Details
-
term
The field for thetermrecord component. -
MAP_CODEC
-
-
Constructor Details
-
InvertedLootItemCondition
Creates an instance of aInvertedLootItemConditionrecord class.- Parameters:
term- the value for thetermrecord component
-
-
Method Details
-
codec
- Specified by:
codecin interfaceLootItemCondition
-
test
- Specified by:
testin interfacePredicate<LootContext>
-
validate
Description copied from interface:LootContextUserValidate that this object is used correctly according to the given ValidationContext.- Specified by:
validatein interfaceLootContextUser- Specified by:
validatein interfaceValidatable
-
invert
-
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). -
term
Returns the value of thetermrecord component.- Returns:
- the value of the
termrecord component
-