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.Loggerstatic final com.mojang.serialization.MapCodec<ListOperation.ReplaceSection> private final intThe field for theoffsetrecord component.The field for thesizerecord 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 aReplaceSectionrecord class. -
Method Summary
Modifier and TypeMethodDescription<T> List<T> final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.mode()intoffset()Returns the value of theoffsetrecord component.size()Returns the value of thesizerecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.world.level.storage.loot.functions.ListOperation
apply
-
Field Details
-
offset
private final int offsetThe field for theoffsetrecord component. -
size
The field for thesizerecord component. -
LOGGER
private static final org.slf4j.Logger LOGGER -
MAP_CODEC
-
-
Constructor Details
-
ReplaceSection
public ReplaceSection(int p_333961_) -
ReplaceSection
Creates an instance of aReplaceSectionrecord class.- Parameters:
offset- the value for theoffsetrecord componentsize- the value for thesizerecord component
-
-
Method Details
-
mode
- Specified by:
modein interfaceListOperation
-
apply
- Specified by:
applyin 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 theoffsetrecord component.- Returns:
- the value of the
offsetrecord component
-
size
Returns the value of thesizerecord component.- Returns:
- the value of the
sizerecord component
-