Package net.minecraft.commands.arguments
Record Class ResourceOrTagKeyArgument.ResourceResult<T>
java.lang.Object
java.lang.Record
net.minecraft.commands.arguments.ResourceOrTagKeyArgument.ResourceResult<T>
- All Implemented Interfaces:
- Predicate<Holder<T>>,- ResourceOrTagKeyArgument.Result<T>
- Enclosing class:
- ResourceOrTagKeyArgument<T>
static record ResourceOrTagKeyArgument.ResourceResult<T>(ResourceKey<T> key)
extends Record
implements ResourceOrTagKeyArgument.Result<T>
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final ResourceKey<T>The field for thekeyrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionResourceResult(ResourceKey<T> key) Creates an instance of aResourceResultrecord class.
- 
Method SummaryModifier and TypeMethodDescriptioncast(ResourceKey<? extends Registry<E>> p_251369_) final 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.booleanfinal StringtoString()Returns a string representation of this record class.com.mojang.datafixers.util.Either<ResourceKey<T>,TagKey<T>> unwrap()
- 
Field Details- 
keyThe field for thekeyrecord component.
 
- 
- 
Constructor Details- 
ResourceResultResourceResult(ResourceKey<T> key) Creates an instance of aResourceResultrecord class.- Parameters:
- key- the value for the- keyrecord component
 
 
- 
- 
Method Details- 
unwrap- Specified by:
- unwrapin interface- ResourceOrTagKeyArgument.Result<T>
 
- 
castpublic <E> Optional<ResourceOrTagKeyArgument.Result<E>> cast(ResourceKey<? extends Registry<E>> p_251369_) - Specified by:
- castin interface- ResourceOrTagKeyArgument.Result<T>
 
- 
test
- 
asPrintable- Specified by:
- asPrintablein interface- ResourceOrTagKeyArgument.Result<T>
 
- 
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).
- 
keyReturns the value of thekeyrecord component.- Returns:
- the value of the keyrecord component
 
 
-