Record Class ResourceOrIdArgument.ReferenceResult<T,O>
java.lang.Object
java.lang.Record
net.minecraft.commands.arguments.ResourceOrIdArgument.ReferenceResult<T,O>
- All Implemented Interfaces:
ResourceOrIdArgument.Result<T,O>
- Enclosing class:
ResourceOrIdArgument<T>
public static record ResourceOrIdArgument.ReferenceResult<T,O> (ResourceKey<T> key)
extends Record
implements ResourceOrIdArgument.Result<T,O>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ResourceKey<T> The field for thekeyrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionReferenceResult(ResourceKey<T> key) Creates an instance of aReferenceResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.key()Returns the value of thekeyrecord component.parse(com.mojang.brigadier.ImmutableStringReader reader, HolderLookup.Provider lookup, com.mojang.serialization.DynamicOps<O> ops, com.mojang.serialization.Codec<T> codec, HolderLookup.RegistryLookup<T> elementLookup) final StringtoString()Returns a string representation of this record class.
-
Field Details
-
key
The field for thekeyrecord component.
-
-
Constructor Details
-
ReferenceResult
Creates an instance of aReferenceResultrecord class.- Parameters:
key- the value for thekeyrecord component
-
-
Method Details
-
parse
public Holder<T> parse(com.mojang.brigadier.ImmutableStringReader reader, HolderLookup.Provider lookup, com.mojang.serialization.DynamicOps<O> ops, com.mojang.serialization.Codec<T> codec, HolderLookup.RegistryLookup<T> elementLookup) throws com.mojang.brigadier.exceptions.CommandSyntaxException - Specified by:
parsein interfaceResourceOrIdArgument.Result<T,O> - Throws:
com.mojang.brigadier.exceptions.CommandSyntaxException
-
toString
-
hashCode
-
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 withObjects::equals(Object,Object). -
key
Returns the value of thekeyrecord component.- Returns:
- the value of the
keyrecord component
-