Record Class UniformLootNumberProvider
java.lang.Object
java.lang.Record
net.minecraft.loot.provider.number.UniformLootNumberProvider
- Record Components:
min
-max
-
- All Implemented Interfaces:
LootContextAware
,LootNumberProvider
public record UniformLootNumberProvider(LootNumberProvider min, LootNumberProvider max)
extends Record
implements LootNumberProvider
- Mappings:
Namespace Name named net/minecraft/loot/provider/number/UniformLootNumberProvider
intermediary net/minecraft/class_5662
official eut
named min
intermediary comp_1900
official b
named max
intermediary comp_1901
official c
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<UniformLootNumberProvider> private final LootNumberProvider
The field for themax
record component.private final LootNumberProvider
The field for themin
record component. -
Constructor Summary
ConstructorDescriptionCreates an instance of aUniformLootNumberProvider
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic UniformLootNumberProvider
create
(float min, float max) final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.max()
Returns the value of themax
record component.min()
Returns the value of themin
record component.float
nextFloat
(LootContext context) int
nextInt
(LootContext context) final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.loot.context.LootContextAware
validate
-
Field Details
-
min
The field for themin
record component. -
max
The field for themax
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/loot/provider/number/UniformLootNumberProvider;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_45891
Lnet/minecraft/class_5662;field_45891:Lcom/mojang/serialization/MapCodec;
official a
Leut;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
Method Details
-
getType
- Specified by:
getType
in interfaceLootNumberProvider
- Mappings:
Namespace Name Mixin selector named getType
Lnet/minecraft/loot/provider/number/LootNumberProvider;getType()Lnet/minecraft/loot/provider/number/LootNumberProviderType;
intermediary method_365
Lnet/minecraft/class_5658;method_365()Lnet/minecraft/class_5657;
official b
Leup;b()Leuo;
-
create
- Mappings:
Namespace Name Mixin selector named create
Lnet/minecraft/loot/provider/number/UniformLootNumberProvider;create(FF)Lnet/minecraft/loot/provider/number/UniformLootNumberProvider;
intermediary method_32462
Lnet/minecraft/class_5662;method_32462(FF)Lnet/minecraft/class_5662;
official a
Leut;a(FF)Leut;
-
nextInt
- Specified by:
nextInt
in interfaceLootNumberProvider
- Mappings:
Namespace Name Mixin selector named nextInt
Lnet/minecraft/loot/provider/number/LootNumberProvider;nextInt(Lnet/minecraft/loot/context/LootContext;)I
intermediary method_366
Lnet/minecraft/class_5658;method_366(Lnet/minecraft/class_47;)I
official a
Leup;a(Leqk;)I
-
nextFloat
- Specified by:
nextFloat
in interfaceLootNumberProvider
- Mappings:
Namespace Name Mixin selector named nextFloat
Lnet/minecraft/loot/provider/number/LootNumberProvider;nextFloat(Lnet/minecraft/loot/context/LootContext;)F
intermediary method_32454
Lnet/minecraft/class_5658;method_32454(Lnet/minecraft/class_47;)F
official b
Leup;b(Leqk;)F
-
getRequiredParameters
- Specified by:
getRequiredParameters
in interfaceLootContextAware
- Mappings:
Namespace Name Mixin selector named getRequiredParameters
Lnet/minecraft/loot/context/LootContextAware;getRequiredParameters()Ljava/util/Set;
intermediary method_293
Lnet/minecraft/class_46;method_293()Ljava/util/Set;
official a
Leql;a()Ljava/util/Set;
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
min
Returns the value of themin
record component.- Returns:
- the value of the
min
record component
-
max
Returns the value of themax
record component.- Returns:
- the value of the
max
record component
-