Record Class AbstractDirectionalCableBlock.DirectionalCacheShapeCacheKey
java.lang.Object
java.lang.Record
com.refinedmods.refinedstorage.common.support.AbstractDirectionalCableBlock.DirectionalCacheShapeCacheKey
- Enclosing class:
AbstractDirectionalCableBlock
protected static record AbstractDirectionalCableBlock.DirectionalCacheShapeCacheKey(CableConnections connections, net.minecraft.core.Direction direction)
extends Record
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedDirectionalCacheShapeCacheKey(CableConnections connections, net.minecraft.core.Direction direction) Creates an instance of aDirectionalCacheShapeCacheKeyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconnectionsrecord component.net.minecraft.core.DirectionReturns the value of thedirectionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DirectionalCacheShapeCacheKey
protected DirectionalCacheShapeCacheKey(CableConnections connections, net.minecraft.core.Direction direction) Creates an instance of aDirectionalCacheShapeCacheKeyrecord class.- Parameters:
connections- the value for theconnectionsrecord componentdirection- the value for thedirectionrecord component
-
-
Method Details
-
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). -
connections
Returns the value of theconnectionsrecord component.- Returns:
- the value of the
connectionsrecord component
-
direction
public net.minecraft.core.Direction direction()Returns the value of thedirectionrecord component.- Returns:
- the value of the
directionrecord component
-