Record Class SurfaceRules.YConditionSource
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.SurfaceRules.YConditionSource
- All Implemented Interfaces:
Function<SurfaceRules.Context,
,SurfaceRules.Condition> SurfaceRules.ConditionSource
- Enclosing class:
- SurfaceRules
static record SurfaceRules.YConditionSource(VerticalAnchor anchor, int surfaceDepthMultiplier, boolean addStoneDepth)
extends Record
implements SurfaceRules.ConditionSource
-
Field Summary
Modifier and TypeFieldDescriptionprivate final boolean
The field for theaddStoneDepth
record component.private final VerticalAnchor
The field for theanchor
record component.(package private) static final KeyDispatchDataCodec<SurfaceRules.YConditionSource>
private final int
The field for thesurfaceDepthMultiplier
record component. -
Constructor Summary
ConstructorDescriptionYConditionSource
(VerticalAnchor anchor, int surfaceDepthMultiplier, boolean addStoneDepth) Creates an instance of aYConditionSource
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the value of theaddStoneDepth
record component.anchor()
Returns the value of theanchor
record component.apply
(SurfaceRules.Context p_189457_) KeyDispatchDataCodec<? extends SurfaceRules.ConditionSource>
codec()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
Returns the value of thesurfaceDepthMultiplier
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
anchor
The field for theanchor
record component. -
surfaceDepthMultiplier
private final int surfaceDepthMultiplierThe field for thesurfaceDepthMultiplier
record component. -
addStoneDepth
private final boolean addStoneDepthThe field for theaddStoneDepth
record component. -
CODEC
-
-
Constructor Details
-
YConditionSource
YConditionSource(VerticalAnchor anchor, int surfaceDepthMultiplier, boolean addStoneDepth) Creates an instance of aYConditionSource
record class.- Parameters:
anchor
- the value for theanchor
record componentsurfaceDepthMultiplier
- the value for thesurfaceDepthMultiplier
record componentaddStoneDepth
- the value for theaddStoneDepth
record component
-
-
Method Details
-
codec
- Specified by:
codec
in interfaceSurfaceRules.ConditionSource
-
apply
- Specified by:
apply
in interfaceFunction<SurfaceRules.Context,
SurfaceRules.Condition>
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
anchor
Returns the value of theanchor
record component.- Returns:
- the value of the
anchor
record component
-
surfaceDepthMultiplier
public int surfaceDepthMultiplier()Returns the value of thesurfaceDepthMultiplier
record component.- Returns:
- the value of the
surfaceDepthMultiplier
record component
-
addStoneDepth
public boolean addStoneDepth()Returns the value of theaddStoneDepth
record component.- Returns:
- the value of the
addStoneDepth
record component
-