Record Class FlowingFluid.BlockStatePairKey
java.lang.Object
java.lang.Record
net.minecraft.world.level.material.FlowingFluid.BlockStatePairKey
- Enclosing class:
FlowingFluid
static record FlowingFluid.BlockStatePairKey(BlockState first, BlockState second, Direction direction)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final DirectionThe field for thedirectionrecord component.private final BlockStateThe field for thefirstrecord component.private final BlockStateThe field for thesecondrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionBlockStatePairKey(BlockState first, BlockState second, Direction direction) Creates an instance of aBlockStatePairKeyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedirectionrecord component.booleanIndicates whether some other object is "equal to" this one.first()Returns the value of thefirstrecord component.inthashCode()Returns a hash code value for this object.second()Returns the value of thesecondrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
first
The field for thefirstrecord component. -
second
The field for thesecondrecord component. -
direction
The field for thedirectionrecord component.
-
-
Constructor Details
-
BlockStatePairKey
BlockStatePairKey(BlockState first, BlockState second, Direction direction) Creates an instance of aBlockStatePairKeyrecord class.- Parameters:
first- the value for thefirstrecord componentsecond- the value for thesecondrecord componentdirection- the value for thedirectionrecord component
-
-
Method Details
-
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). -
hashCode
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. -
first
Returns the value of thefirstrecord component.- Returns:
- the value of the
firstrecord component
-
second
Returns the value of thesecondrecord component.- Returns:
- the value of the
secondrecord component
-
direction
Returns the value of thedirectionrecord component.- Returns:
- the value of the
directionrecord component
-