Package net.minecraft.world.item
Record Class EitherHolder<T>
java.lang.Object
java.lang.Record
net.minecraft.world.item.EitherHolder<T>
-
Field Summary
-
Constructor Summary
ConstructorDescriptionEitherHolder
(Optional<Holder<T>> holder, ResourceKey<T> key) Creates an instance of aEitherHolder
record class.EitherHolder
(Holder<T> p_344455_) EitherHolder
(ResourceKey<T> p_343550_) -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.datafixers.util.Either
<Holder<T>, ResourceKey<T>> asEither()
static <T> com.mojang.serialization.Codec
<EitherHolder<T>> codec
(ResourceKey<Registry<T>> p_343702_, com.mojang.serialization.Codec<Holder<T>> p_342656_) final boolean
Indicates whether some other object is "equal to" this one.static <T> EitherHolder
<T> fromEither
(com.mojang.datafixers.util.Either<Holder<T>, ResourceKey<T>> p_343721_) final int
hashCode()
Returns a hash code value for this object.holder()
Returns the value of theholder
record component.key()
Returns the value of thekey
record component.static <T> StreamCodec
<RegistryFriendlyByteBuf, EitherHolder<T>> streamCodec
(ResourceKey<Registry<T>> p_343828_, StreamCodec<RegistryFriendlyByteBuf, Holder<T>> p_345169_) final String
toString()
Returns a string representation of this record class.unwrap
(HolderLookup.Provider p_344960_)
-
Field Details
-
holder
The field for theholder
record component. -
key
The field for thekey
record component.
-
-
Constructor Details
-
EitherHolder
-
EitherHolder
-
EitherHolder
Creates an instance of aEitherHolder
record class.- Parameters:
holder
- the value for theholder
record componentkey
- the value for thekey
record component
-
-
Method Details
-
codec
public static <T> com.mojang.serialization.Codec<EitherHolder<T>> codec(ResourceKey<Registry<T>> p_343702_, com.mojang.serialization.Codec<Holder<T>> p_342656_) -
streamCodec
public static <T> StreamCodec<RegistryFriendlyByteBuf,EitherHolder<T>> streamCodec(ResourceKey<Registry<T>> p_343828_, StreamCodec<RegistryFriendlyByteBuf, Holder<T>> p_345169_) -
asEither
-
fromEither
public static <T> EitherHolder<T> fromEither(com.mojang.datafixers.util.Either<Holder<T>, ResourceKey<T>> p_343721_) -
unwrap
-
unwrap
-
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)
. -
holder
Returns the value of theholder
record component.- Returns:
- the value of the
holder
record component
-
key
Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-