Record Class WaterCondition
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.material.condition.WaterCondition
- All Implemented Interfaces:
MaterialCondition
public record WaterCondition(int offset, int surfaceDepthMultiplier, boolean addStoneDepth)
extends Record
implements MaterialCondition
-
Nested Class Summary
Nested classes/interfaces inherited from interface MaterialCondition
MaterialCondition.HolderHolder -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final booleanThe field for theaddStoneDepthrecord component.static final com.mojang.serialization.MapCodec<WaterCondition> private final intThe field for theoffsetrecord component.private final intThe field for thesurfaceDepthMultiplierrecord component.Fields inherited from interface MaterialCondition
DIRECT_CODEC -
Constructor Summary
ConstructorsConstructorDescriptionWaterCondition(int offset, int surfaceDepthMultiplier, boolean addStoneDepth) Creates an instance of aWaterConditionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns the value of theaddStoneDepthrecord component.com.mojang.serialization.MapCodec<WaterCondition> codec()compile(MaterialRuleContext ruleContext) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intoffset()Returns the value of theoffsetrecord component.intReturns the value of thesurfaceDepthMultiplierrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
offset
private final int offsetThe field for theoffsetrecord component. -
surfaceDepthMultiplier
private final int surfaceDepthMultiplierThe field for thesurfaceDepthMultiplierrecord component. -
addStoneDepth
private final boolean addStoneDepthThe field for theaddStoneDepthrecord component. -
CODEC
-
-
Constructor Details
-
WaterCondition
public WaterCondition(int offset, int surfaceDepthMultiplier, boolean addStoneDepth) Creates an instance of aWaterConditionrecord class.- Parameters:
offset- the value for theoffsetrecord componentsurfaceDepthMultiplier- the value for thesurfaceDepthMultiplierrecord componentaddStoneDepth- the value for theaddStoneDepthrecord component
-
-
Method Details
-
codec
- Specified by:
codecin interfaceMaterialCondition
-
compile
- Specified by:
compilein interfaceMaterialCondition
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
offset
public int offset()Returns the value of theoffsetrecord component.- Returns:
- the value of the
offsetrecord component
-
surfaceDepthMultiplier
public int surfaceDepthMultiplier()Returns the value of thesurfaceDepthMultiplierrecord component.- Returns:
- the value of the
surfaceDepthMultiplierrecord component
-
addStoneDepth
public boolean addStoneDepth()Returns the value of theaddStoneDepthrecord component.- Returns:
- the value of the
addStoneDepthrecord component
-