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 SummaryFieldsModifier and TypeFieldDescriptionprivate final booleanThe field for theaddStoneDepthrecord component.private final VerticalAnchorThe field for theanchorrecord component.(package private) static final KeyDispatchDataCodec<SurfaceRules.YConditionSource>private final intThe field for thesurfaceDepthMultiplierrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionYConditionSource(VerticalAnchor anchor, int surfaceDepthMultiplier, boolean addStoneDepth) Creates an instance of aYConditionSourcerecord class.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanReturns the value of theaddStoneDepthrecord component.anchor()Returns the value of theanchorrecord component.apply(SurfaceRules.Context p_189457_) KeyDispatchDataCodec<? extends SurfaceRules.ConditionSource>codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of thesurfaceDepthMultiplierrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
anchorThe field for theanchorrecord component.
- 
surfaceDepthMultiplierprivate final int surfaceDepthMultiplierThe field for thesurfaceDepthMultiplierrecord component.
- 
addStoneDepthprivate final boolean addStoneDepthThe field for theaddStoneDepthrecord component.
- 
CODEC
 
- 
- 
Constructor Details- 
YConditionSourceYConditionSource(VerticalAnchor anchor, int surfaceDepthMultiplier, boolean addStoneDepth) Creates an instance of aYConditionSourcerecord class.- Parameters:
- anchor- the value for the- anchorrecord component
- surfaceDepthMultiplier- the value for the- surfaceDepthMultiplierrecord component
- addStoneDepth- the value for the- addStoneDepthrecord component
 
 
- 
- 
Method Details- 
codec- Specified by:
- codecin interface- SurfaceRules.ConditionSource
 
- 
apply- Specified by:
- applyin interface- Function<SurfaceRules.Context,- SurfaceRules.Condition> 
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
anchorReturns the value of theanchorrecord component.- Returns:
- the value of the anchorrecord component
 
- 
surfaceDepthMultiplierpublic int surfaceDepthMultiplier()Returns the value of thesurfaceDepthMultiplierrecord component.- Returns:
- the value of the surfaceDepthMultiplierrecord component
 
- 
addStoneDepthpublic boolean addStoneDepth()Returns the value of theaddStoneDepthrecord component.- Returns:
- the value of the addStoneDepthrecord component
 
 
-