Record Class ConstantLootNumberProvider
java.lang.Object
java.lang.Record
net.minecraft.loot.provider.number.ConstantLootNumberProvider
- Record Components:
value
-
- All Implemented Interfaces:
LootContextAware
,LootNumberProvider
- Mappings:
Namespace Name named net/minecraft/loot/provider/number/ConstantLootNumberProvider
intermediary net/minecraft/class_44
official eun
named value
intermediary comp_1895
official c
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<ConstantLootNumberProvider> static final com.mojang.serialization.Codec
<ConstantLootNumberProvider> private final float
The field for thevalue
record component. -
Constructor Summary
ConstructorDescriptionConstantLootNumberProvider
(float value) Creates an instance of aConstantLootNumberProvider
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic ConstantLootNumberProvider
create
(float value) boolean
Indicates whether some other object is "equal to" this one.getType()
int
hashCode()
Returns a hash code value for this object.float
nextFloat
(LootContext context) final String
toString()
Returns a string representation of this record class.float
value()
Returns the value of thevalue
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.loot.context.LootContextAware
getRequiredParameters, validate
Methods inherited from interface net.minecraft.loot.provider.number.LootNumberProvider
nextInt
-
Field Details
-
value
private final float valueThe field for thevalue
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/loot/provider/number/ConstantLootNumberProvider;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_45886
Lnet/minecraft/class_44;field_45886:Lcom/mojang/serialization/MapCodec;
official a
Leun;a:Lcom/mojang/serialization/MapCodec;
-
INLINE_CODEC
- Mappings:
Namespace Name Mixin selector named INLINE_CODEC
Lnet/minecraft/loot/provider/number/ConstantLootNumberProvider;INLINE_CODEC:Lcom/mojang/serialization/Codec;
intermediary field_45887
Lnet/minecraft/class_44;field_45887:Lcom/mojang/serialization/Codec;
official b
Leun;b:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
ConstantLootNumberProvider
public ConstantLootNumberProvider(float value) Creates an instance of aConstantLootNumberProvider
record class.- Parameters:
value
- the value for thevalue
record component
-
-
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;
-
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
-
create
- Mappings:
Namespace Name Mixin selector named create
Lnet/minecraft/loot/provider/number/ConstantLootNumberProvider;create(F)Lnet/minecraft/loot/provider/number/ConstantLootNumberProvider;
intermediary method_32448
Lnet/minecraft/class_44;method_32448(F)Lnet/minecraft/class_44;
official a
Leun;a(F)Leun;
-
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 with '=='. -
hashCode
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. -
value
public float value()Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-