Package net.minecraft.commands.arguments
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 thekey
record component. -
Constructor Summary
ConstructorsConstructorDescriptionReferenceResult
(ResourceKey<T> key) Creates an instance of aReferenceResult
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.key()
Returns the value of thekey
record component.parse
(com.mojang.brigadier.ImmutableStringReader p_422449_, HolderLookup.Provider p_422045_, com.mojang.serialization.DynamicOps<O> p_421653_, com.mojang.serialization.Codec<T> p_422608_, HolderLookup.RegistryLookup<T> p_421710_) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
key
The field for thekey
record component.
-
-
Constructor Details
-
ReferenceResult
Creates an instance of aReferenceResult
record class.- Parameters:
key
- the value for thekey
record component
-
-
Method Details
-
parse
public Holder<T> parse(com.mojang.brigadier.ImmutableStringReader p_422449_, HolderLookup.Provider p_422045_, com.mojang.serialization.DynamicOps<O> p_421653_, com.mojang.serialization.Codec<T> p_422608_, HolderLookup.RegistryLookup<T> p_421710_) throws com.mojang.brigadier.exceptions.CommandSyntaxException - Specified by:
parse
in interfaceResourceOrIdArgument.Result<T,
O> - Throws:
com.mojang.brigadier.exceptions.CommandSyntaxException
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
key
Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-