Package net.minecraft.server.function
Record Class ExpandedMacro<T>
java.lang.Object
java.lang.Record
net.minecraft.server.function.ExpandedMacro<T>
- Record Components:
- id-
- entries-
- All Implemented Interfaces:
- CommandFunction<T>,- Procedure<T>
public record ExpandedMacro<T>(Identifier id, List<SourcedCommandAction<T>> entries)
extends Record
implements CommandFunction<T>, Procedure<T>
- Mappings:
- Namespace - Name - named - net/minecraft/server/function/ExpandedMacro- intermediary - net/minecraft/class_8872- official - ip- named - id- intermediary - comp_1994- official - a- named - entries- intermediary - comp_1995- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final List<SourcedCommandAction<T>> The field for theentriesrecord component.private final IdentifierThe field for theidrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionentries()Returns the value of theentriesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.final StringtoString()Returns a string representation of this record class.withMacroReplaced(@Nullable NbtCompound arguments, com.mojang.brigadier.CommandDispatcher<T> dispatcher) 
- 
Field Details
- 
Constructor Details- 
ExpandedMacro
 
- 
- 
Method Details- 
withMacroReplacedpublic Procedure<T> withMacroReplaced(@Nullable @Nullable NbtCompound arguments, com.mojang.brigadier.CommandDispatcher<T> dispatcher) throws MacroException - Specified by:
- withMacroReplacedin interface- CommandFunction<T>
- Throws:
- MacroException
- Mappings:
- Namespace - Name - Mixin selector - named - withMacroReplaced- Lnet/minecraft/server/function/CommandFunction;withMacroReplaced(Lnet/minecraft/nbt/NbtCompound;Lcom/mojang/brigadier/CommandDispatcher;)Lnet/minecraft/server/function/Procedure;- intermediary - method_52595- Lnet/minecraft/class_2158;method_52595(Lnet/minecraft/class_2487;Lcom/mojang/brigadier/CommandDispatcher;)Lnet/minecraft/class_8868;- official - a- Lil;a(Ltq;Lcom/mojang/brigadier/CommandDispatcher;)Lin;
 
- 
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. All components in this record class are compared withObjects::equals(Object,Object).
- 
idReturns the value of theidrecord component.
- 
entriesReturns the value of theentriesrecord component.
 
-