Record Class SurfaceRules.StoneDepthCheck
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.SurfaceRules.StoneDepthCheck
- All Implemented Interfaces:
Function<SurfaceRules.Context,
,SurfaceRules.Condition> SurfaceRules.ConditionSource
- Enclosing class:
- SurfaceRules
static record SurfaceRules.StoneDepthCheck(int offset, boolean addSurfaceDepth, int secondaryDepthRange, CaveSurface surfaceType)
extends Record
implements SurfaceRules.ConditionSource
-
Field Summary
Modifier and TypeFieldDescriptionprivate final boolean
The field for theaddSurfaceDepth
record component.(package private) static final com.mojang.serialization.Codec<SurfaceRules.StoneDepthCheck>
private final int
The field for theoffset
record component.private final int
The field for thesecondaryDepthRange
record component.private final CaveSurface
The field for thesurfaceType
record component. -
Constructor Summary
ConstructorDescriptionStoneDepthCheck
(int offset, boolean addSurfaceDepth, int secondaryDepthRange, CaveSurface surfaceType) Creates an instance of aStoneDepthCheck
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the value of theaddSurfaceDepth
record component.apply
(SurfaceRules.Context p_189755_) com.mojang.serialization.Codec<? 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 thesecondaryDepthRange
record component.Returns the value of thesurfaceType
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. -
addSurfaceDepth
private final boolean addSurfaceDepthThe field for theaddSurfaceDepth
record component. -
secondaryDepthRange
private final int secondaryDepthRangeThe field for thesecondaryDepthRange
record component. -
surfaceType
The field for thesurfaceType
record component. -
CODEC
-
-
Constructor Details
-
StoneDepthCheck
StoneDepthCheck(int offset, boolean addSurfaceDepth, int secondaryDepthRange, CaveSurface surfaceType) Creates an instance of aStoneDepthCheck
record class.- Parameters:
offset
- the value for theoffset
record componentaddSurfaceDepth
- the value for theaddSurfaceDepth
record componentsecondaryDepthRange
- the value for thesecondaryDepthRange
record componentsurfaceType
- the value for thesurfaceType
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 '=='. -
offset
public int offset()Returns the value of theoffset
record component.- Returns:
- the value of the
offset
record component
-
addSurfaceDepth
public boolean addSurfaceDepth()Returns the value of theaddSurfaceDepth
record component.- Returns:
- the value of the
addSurfaceDepth
record component
-
secondaryDepthRange
public int secondaryDepthRange()Returns the value of thesecondaryDepthRange
record component.- Returns:
- the value of the
secondaryDepthRange
record component
-
surfaceType
Returns the value of thesurfaceType
record component.- Returns:
- the value of the
surfaceType
record component
-