Record Class ListOperation.Insert
java.lang.Object
java.lang.Record
net.minecraft.world.level.storage.loot.functions.ListOperation.Insert
- All Implemented Interfaces:
ListOperation
- Enclosing interface:
ListOperation
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.world.level.storage.loot.functions.ListOperation
ListOperation.Append, ListOperation.Insert, ListOperation.ReplaceAll, ListOperation.ReplaceSection, ListOperation.StandAlone<T>, ListOperation.Type
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final org.slf4j.Logger
static final com.mojang.serialization.MapCodec
<ListOperation.Insert> private final int
The field for theoffset
record component.Fields inherited from interface net.minecraft.world.level.storage.loot.functions.ListOperation
UNLIMITED_CODEC
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<T> List
<T> final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.mode()
int
offset()
Returns the value of theoffset
record component.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.world.level.storage.loot.functions.ListOperation
apply
-
Field Details
-
offset
private final int offsetThe field for theoffset
record component. -
LOGGER
private static final org.slf4j.Logger LOGGER -
MAP_CODEC
-
-
Constructor Details
-
Insert
public Insert(int offset) Creates an instance of aInsert
record class.- Parameters:
offset
- the value for theoffset
record component
-
-
Method Details
-
mode
- Specified by:
mode
in interfaceListOperation
-
apply
- Specified by:
apply
in interfaceListOperation
-
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 with '=='. -
offset
public int offset()Returns the value of theoffset
record component.- Returns:
- the value of the
offset
record component
-