Record Class FluidPredicate
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.FluidPredicate
- 
Nested Class SummaryNested Classes
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<FluidPredicate> The field for thefluidsrecord component.private final Optional<StatePropertiesPredicate> The field for thepropertiesrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionFluidPredicate(Optional<HolderSet<Fluid>> fluids, Optional<StatePropertiesPredicate> properties) Creates an instance of aFluidPredicaterecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.fluids()Returns the value of thefluidsrecord component.final inthashCode()Returns a hash code value for this object.booleanmatches(ServerLevel p_41105_, BlockPos p_41106_) Returns the value of thepropertiesrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
fluidsThe field for thefluidsrecord component.
- 
propertiesThe field for thepropertiesrecord component.
- 
CODEC
 
- 
- 
Constructor Details- 
FluidPredicatepublic FluidPredicate(Optional<HolderSet<Fluid>> fluids, Optional<StatePropertiesPredicate> properties) Creates an instance of aFluidPredicaterecord class.- Parameters:
- fluids- the value for the- fluidsrecord component
- properties- the value for the- propertiesrecord component
 
 
- 
- 
Method Details- 
matches
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
fluidsReturns the value of thefluidsrecord component.- Returns:
- the value of the fluidsrecord component
 
- 
propertiesReturns the value of thepropertiesrecord component.- Returns:
- the value of the propertiesrecord component
 
 
-