Package net.minecraft.world
Record Class MobSpawnerEntry.CustomSpawnRules
java.lang.Object
java.lang.Record
net.minecraft.world.MobSpawnerEntry.CustomSpawnRules
- Record Components:
- blockLightLimit-
- skyLightLimit-
- Enclosing class:
- MobSpawnerEntry
public static record MobSpawnerEntry.CustomSpawnRules(Range<Integer> blockLightLimit, Range<Integer> skyLightLimit)
extends Record
- Mappings:
- Namespace - Name - official - cnd$a- intermediary - net/minecraft/class_1952$class_6542- named - net/minecraft/world/MobSpawnerEntry$CustomSpawnRules- official - b- intermediary - comp_66- named - blockLightLimit- official - c- intermediary - comp_67- named - skyLightLimit
- 
Field SummaryFieldsModifier and TypeFieldDescriptionThe field for theblockLightLimitrecord component.static final com.mojang.serialization.Codec<MobSpawnerEntry.CustomSpawnRules>The field for theskyLightLimitrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of theblockLightLimitrecord component.createLightLimitCodec(String name) 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 theskyLightLimitrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
blockLightLimitThe field for theblockLightLimitrecord component.
- 
skyLightLimitThe field for theskyLightLimitrecord component.
- 
DEFAULT- Mappings:
- Namespace - Name - Mixin selector - official - d- Lcnd$a;d:Laot;- intermediary - field_34463- Lnet/minecraft/class_1952$class_6542;field_34463:Lnet/minecraft/class_6497;- named - DEFAULT- Lnet/minecraft/world/MobSpawnerEntry$CustomSpawnRules;DEFAULT:Lnet/minecraft/util/dynamic/Range;
 
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - official - a- Lcnd$a;a:Lcom/mojang/serialization/Codec;- intermediary - field_34462- Lnet/minecraft/class_1952$class_6542;field_34462:Lcom/mojang/serialization/Codec;- named - CODEC- Lnet/minecraft/world/MobSpawnerEntry$CustomSpawnRules;CODEC:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
CustomSpawnRules
 
- 
- 
Method Details- 
validateprivate static com.mojang.serialization.DataResult<Range<Integer>> validate(Range<Integer> provider) - Mappings:
- Namespace - Name - Mixin selector - official - a- Lcnd$a;a(Laot;)Lcom/mojang/serialization/DataResult;- intermediary - method_38099- Lnet/minecraft/class_1952$class_6542;method_38099(Lnet/minecraft/class_6497;)Lcom/mojang/serialization/DataResult;- named - validate- Lnet/minecraft/world/MobSpawnerEntry$CustomSpawnRules;validate(Lnet/minecraft/util/dynamic/Range;)Lcom/mojang/serialization/DataResult;
 
- 
createLightLimitCodec- Mappings:
- Namespace - Name - Mixin selector - official - a- Lcnd$a;a(Ljava/lang/String;)Lcom/mojang/serialization/MapCodec;- intermediary - method_51719- Lnet/minecraft/class_1952$class_6542;method_51719(Ljava/lang/String;)Lcom/mojang/serialization/MapCodec;- named - createLightLimitCodec- Lnet/minecraft/world/MobSpawnerEntry$CustomSpawnRules;createLightLimitCodec(Ljava/lang/String;)Lcom/mojang/serialization/MapCodec;
 
- 
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. All components in this record class are compared withObjects::equals(Object,Object).
- 
blockLightLimitReturns the value of theblockLightLimitrecord component.- Returns:
- the value of the blockLightLimitrecord component
 
- 
skyLightLimitReturns the value of theskyLightLimitrecord component.- Returns:
- the value of the skyLightLimitrecord component
 
 
-