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 official eko
intermediary net/minecraft/class_44
named net/minecraft/loot/provider/number/ConstantLootNumberProvider
official c
intermediary comp_1895
named value
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<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 official a
Leko;a:Lcom/mojang/serialization/Codec;
intermediary field_45886
Lnet/minecraft/class_44;field_45886:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/loot/provider/number/ConstantLootNumberProvider;CODEC:Lcom/mojang/serialization/Codec;
-
INLINE_CODEC
- Mappings:
Namespace Name Mixin selector official b
Leko;b:Lcom/mojang/serialization/Codec;
intermediary field_45887
Lnet/minecraft/class_44;field_45887:Lcom/mojang/serialization/Codec;
named INLINE_CODEC
Lnet/minecraft/loot/provider/number/ConstantLootNumberProvider;INLINE_CODEC: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 official b
Lekq;b()Lekp;
intermediary method_365
Lnet/minecraft/class_5658;method_365()Lnet/minecraft/class_5657;
named getType
Lnet/minecraft/loot/provider/number/LootNumberProvider;getType()Lnet/minecraft/loot/provider/number/LootNumberProviderType;
-
nextFloat
- Specified by:
nextFloat
in interfaceLootNumberProvider
- Mappings:
Namespace Name Mixin selector official b
Lekq;b(Legw;)F
intermediary method_32454
Lnet/minecraft/class_5658;method_32454(Lnet/minecraft/class_47;)F
named nextFloat
Lnet/minecraft/loot/provider/number/LootNumberProvider;nextFloat(Lnet/minecraft/loot/context/LootContext;)F
-
create
- Mappings:
Namespace Name Mixin selector official a
Leko;a(F)Leko;
intermediary method_32448
Lnet/minecraft/class_44;method_32448(F)Lnet/minecraft/class_44;
named create
Lnet/minecraft/loot/provider/number/ConstantLootNumberProvider;create(F)Lnet/minecraft/loot/provider/number/ConstantLootNumberProvider;
-
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
-