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
ConstructorsModifierConstructorDescriptionprotected
DirectionalCacheShapeCacheKey
(CableConnections connections, net.minecraft.core.Direction direction) Creates an instance of aDirectionalCacheShapeCacheKey
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconnections
record component.net.minecraft.core.Direction
Returns the value of thedirection
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
DirectionalCacheShapeCacheKey
protected DirectionalCacheShapeCacheKey(CableConnections connections, net.minecraft.core.Direction direction) Creates an instance of aDirectionalCacheShapeCacheKey
record class.- Parameters:
connections
- the value for theconnections
record componentdirection
- the value for thedirection
record 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 theconnections
record component.- Returns:
- the value of the
connections
record component
-
direction
public net.minecraft.core.Direction direction()Returns the value of thedirection
record component.- Returns:
- the value of the
direction
record component
-