Record Class SurfaceRules.WaterConditionSource
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.SurfaceRules.WaterConditionSource
- All Implemented Interfaces:
Function<SurfaceRules.Context,
,SurfaceRules.Condition> SurfaceRules.ConditionSource
- Enclosing class:
SurfaceRules
static record SurfaceRules.WaterConditionSource(int offset, int surfaceDepthMultiplier, boolean addStoneDepth)
extends Record
implements SurfaceRules.ConditionSource
-
Field Summary
Modifier and TypeFieldDescriptionprivate final boolean
The field for theaddStoneDepth
record component.(package private) static final KeyDispatchDataCodec<SurfaceRules.WaterConditionSource>
private final int
The field for theoffset
record component.private final int
The field for thesurfaceDepthMultiplier
record component. -
Constructor Summary
ConstructorDescriptionWaterConditionSource
(int offset, int surfaceDepthMultiplier, boolean addStoneDepth) Creates an instance of aWaterConditionSource
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the value of theaddStoneDepth
record component.apply
(SurfaceRules.Context p_189876_) 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
offset()
Returns the value of theoffset
record component.int
Returns the value of thesurfaceDepthMultiplier
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
offset
private final int offsetThe field for theoffset
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
-
WaterConditionSource
WaterConditionSource(int offset, int surfaceDepthMultiplier, boolean addStoneDepth) Creates an instance of aWaterConditionSource
record class.- Parameters:
offset
- the value for theoffset
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. All components in this record class are compared with '=='. -
offset
public int offset()Returns the value of theoffset
record component.- Returns:
- the value of the
offset
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
-