Record Class ConditionReference
java.lang.Object
java.lang.Record
net.minecraft.world.level.storage.loot.predicates.ConditionReference
- All Implemented Interfaces:
Predicate<LootContext>
,LootContextUser
,LootItemCondition
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.world.level.storage.loot.predicates.LootItemCondition
LootItemCondition.Builder
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ConditionReference>
private static final org.slf4j.Logger
private final ResourceLocation
The field for thename
record component. -
Constructor Summary
ConstructorDescriptionCreates an instance of aConditionReference
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic LootItemCondition.Builder
conditionReference
(ResourceLocation p_165481_) final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.boolean
test
(LootContext p_81558_) final String
toString()
Returns a string representation of this record class.void
validate
(ValidationContext p_81560_) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.world.level.storage.loot.LootContextUser
getReferencedContextParams
-
Field Details
-
name
The field for thename
record component. -
LOGGER
private static final org.slf4j.Logger LOGGER -
CODEC
-
-
Constructor Details
-
ConditionReference
Creates an instance of aConditionReference
record class.- Parameters:
name
- the value for thename
record component
-
-
Method Details
-
getType
- Specified by:
getType
in interfaceLootItemCondition
-
validate
- Specified by:
validate
in interfaceLootContextUser
-
test
- Specified by:
test
in 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 thename
record component.- Returns:
- the value of the
name
record component
-