Record Class ListOperation.ReplaceSection
java.lang.Object
java.lang.Record
net.minecraft.world.level.storage.loot.functions.ListOperation.ReplaceSection
- All Implemented Interfaces:
ListOperation
- Enclosing interface:
ListOperation
public static record ListOperation.ReplaceSection(int offset, Optional<Integer> size)
extends Record
implements 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.ReplaceSection> private final int
The field for theoffset
record component.The field for thesize
record component.Fields inherited from interface net.minecraft.world.level.storage.loot.functions.ListOperation
UNLIMITED_CODEC
-
Constructor Summary
ConstructorsConstructorDescriptionReplaceSection
(int p_333961_) ReplaceSection
(int offset, Optional<Integer> size) Creates an instance of aReplaceSection
record class. -
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.size()
Returns the value of thesize
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. -
size
The field for thesize
record component. -
LOGGER
private static final org.slf4j.Logger LOGGER -
MAP_CODEC
-
-
Constructor Details
-
ReplaceSection
public ReplaceSection(int p_333961_) -
ReplaceSection
Creates an instance of aReplaceSection
record class.- Parameters:
offset
- the value for theoffset
record componentsize
- the value for thesize
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
offset
public int offset()Returns the value of theoffset
record component.- Returns:
- the value of the
offset
record component
-
size
Returns the value of thesize
record component.- Returns:
- the value of the
size
record component
-