Package net.minecraft.world.tick
Record Class OrderedTick<T>
java.lang.Object
java.lang.Record
net.minecraft.world.tick.OrderedTick<T>
- Record Components:
- type-
- pos-
- triggerTick-
- priority-
- subTickOrder-
public record OrderedTick<T>(T type, BlockPos pos, long triggerTick, TickPriority priority, long subTickOrder)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/world/tick/OrderedTick- intermediary - net/minecraft/class_6760- official - fct- named - type- intermediary - comp_252- official - d- named - pos- intermediary - comp_253- official - e- named - triggerTick- intermediary - comp_254- official - f- named - priority- intermediary - comp_255- official - g- named - subTickOrder- intermediary - comp_256- official - h
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final Comparator<OrderedTick<?>> static final Hash.Strategy<OrderedTick<?>> private final BlockPosThe field for theposrecord component.private final TickPriorityThe field for thepriorityrecord component.private final longThe field for thesubTickOrderrecord component.static final Comparator<OrderedTick<?>> private final longThe field for thetriggerTickrecord component.private final TThe field for thetyperecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionOrderedTick(T type, BlockPos pos, long triggerTick, long subTickOrder) OrderedTick(T t, BlockPos blockPos, long long2, TickPriority tickPriority, long long3) 
- 
Method SummaryModifier and TypeMethodDescriptionstatic <T> OrderedTick<T> final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.pos()Returns the value of theposrecord component.priority()Returns the value of thepriorityrecord component.longReturns the value of thesubTickOrderrecord component.final StringtoString()Returns a string representation of this record class.toTick(long time) longReturns the value of thetriggerTickrecord component.type()Returns the value of thetyperecord component.
- 
Field Details- 
typeThe field for thetyperecord component.
- 
posThe field for theposrecord component.
- 
triggerTickprivate final long triggerTickThe field for thetriggerTickrecord component.
- 
priorityThe field for thepriorityrecord component.
- 
subTickOrderprivate final long subTickOrderThe field for thesubTickOrderrecord component.
- 
TRIGGER_TICK_COMPARATOR- Mappings:
- Namespace - Name - Mixin selector - named - TRIGGER_TICK_COMPARATOR- Lnet/minecraft/world/tick/OrderedTick;TRIGGER_TICK_COMPARATOR:Ljava/util/Comparator;- intermediary - field_35549- Lnet/minecraft/class_6760;field_35549:Ljava/util/Comparator;- official - a- Lfct;a:Ljava/util/Comparator;
 
- 
BASIC_COMPARATOR- Mappings:
- Namespace - Name - Mixin selector - named - BASIC_COMPARATOR- Lnet/minecraft/world/tick/OrderedTick;BASIC_COMPARATOR:Ljava/util/Comparator;- intermediary - field_35550- Lnet/minecraft/class_6760;field_35550:Ljava/util/Comparator;- official - b- Lfct;b:Ljava/util/Comparator;
 
- 
HASH_STRATEGY- Mappings:
- Namespace - Name - Mixin selector - named - HASH_STRATEGY- Lnet/minecraft/world/tick/OrderedTick;HASH_STRATEGY:Lit/unimi/dsi/fastutil/Hash$Strategy;- intermediary - field_35551- Lnet/minecraft/class_6760;field_35551:Lit/unimi/dsi/fastutil/Hash$Strategy;- official - c- Lfct;c:Lit/unimi/dsi/fastutil/Hash$Strategy;
 
 
- 
- 
Constructor Details- 
OrderedTick- Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/world/tick/OrderedTick;<init>(Ljava/lang/Object;Lnet/minecraft/util/math/BlockPos;JJ)V- intermediary - <init>- Lnet/minecraft/class_6760;<init>(Ljava/lang/Object;Lnet/minecraft/class_2338;JJ)V- official - <init>- Lfct;<init>(Ljava/lang/Object;Lji;JJ)V
 
- 
OrderedTick
 
- 
- 
Method Details- 
create- Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/world/tick/OrderedTick;create(Ljava/lang/Object;Lnet/minecraft/util/math/BlockPos;)Lnet/minecraft/world/tick/OrderedTick;- intermediary - method_39410- Lnet/minecraft/class_6760;method_39410(Ljava/lang/Object;Lnet/minecraft/class_2338;)Lnet/minecraft/class_6760;- official - a- Lfct;a(Ljava/lang/Object;Lji;)Lfct;
 
- 
toTick- Mappings:
- Namespace - Name - Mixin selector - named - toTick- Lnet/minecraft/world/tick/OrderedTick;toTick(J)Lnet/minecraft/world/tick/Tick;- intermediary - method_61899- Lnet/minecraft/class_6760;method_61899(J)Lnet/minecraft/class_6759;- official - a- Lfct;a(J)Lfcs;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
typeReturns the value of thetyperecord component.- Returns:
- the value of the typerecord component
 
- 
posReturns the value of theposrecord component.- Returns:
- the value of the posrecord component
 
- 
triggerTickpublic long triggerTick()Returns the value of thetriggerTickrecord component.- Returns:
- the value of the triggerTickrecord component
 
- 
priorityReturns the value of thepriorityrecord component.- Returns:
- the value of the priorityrecord component
 
- 
subTickOrderpublic long subTickOrder()Returns the value of thesubTickOrderrecord component.- Returns:
- the value of the subTickOrderrecord component
 
 
-