Record Class SurfaceRules.BlockRuleSource
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.SurfaceRules.BlockRuleSource
- All Implemented Interfaces:
Function<SurfaceRules.Context, SurfaceRules.SurfaceRule>, SurfaceRules.RuleSource
- Enclosing class:
SurfaceRules
private static record SurfaceRules.BlockRuleSource(BlockState resultState, SurfaceRules.StateRule rule)
extends Record
implements SurfaceRules.RuleSource
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final KeyDispatchDataCodec<SurfaceRules.BlockRuleSource> private final BlockStateThe field for theresultStaterecord component.private final SurfaceRules.StateRuleThe field for therulerecord component. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateBlockRuleSource(BlockState state) privateBlockRuleSource(BlockState resultState, SurfaceRules.StateRule rule) Creates an instance of aBlockRuleSourcerecord class. -
Method Summary
Modifier and TypeMethodDescriptionapply(SurfaceRules.Context context) KeyDispatchDataCodec<? extends SurfaceRules.RuleSource> codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theresultStaterecord component.rule()Returns the value of therulerecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
resultState
The field for theresultStaterecord component. -
rule
The field for therulerecord component. -
CODEC
-
-
Constructor Details
-
BlockRuleSource
-
BlockRuleSource
Creates an instance of aBlockRuleSourcerecord class.- Parameters:
resultState- the value for theresultStaterecord componentrule- the value for therulerecord component
-
-
Method Details
-
codec
- Specified by:
codecin interfaceSurfaceRules.RuleSource
-
apply
- Specified by:
applyin interfaceFunction<SurfaceRules.Context, SurfaceRules.SurfaceRule>
-
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 withObjects::equals(Object,Object). -
resultState
Returns the value of theresultStaterecord component.- Returns:
- the value of the
resultStaterecord component
-
rule
Returns the value of therulerecord component.- Returns:
- the value of the
rulerecord component
-