Record Class HasComponentProperty
java.lang.Object
java.lang.Record
net.minecraft.client.render.item.property.bool.HasComponentProperty
- Record Components:
componentType
-ignoreDefault
-
- All Implemented Interfaces:
BooleanProperty
,PropertyTester
@Environment(CLIENT)
public record HasComponentProperty(ComponentType<?> componentType, boolean ignoreDefault)
extends Record
implements BooleanProperty
- Mappings:
Namespace Name named net/minecraft/client/render/item/property/bool/HasComponentProperty
intermediary net/minecraft/class_10464
official hox
named componentType
intermediary comp_3408
official b
named ignoreDefault
intermediary comp_3438
official c
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<HasComponentProperty> private final ComponentType
<?> The field for thecomponentType
record component.private final boolean
The field for theignoreDefault
record component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecomponentType
record component.final boolean
Indicates whether some other object is "equal to" this one.com.mojang.serialization.MapCodec
<HasComponentProperty> getCodec()
final int
hashCode()
Returns a hash code value for this object.boolean
Returns the value of theignoreDefault
record component.boolean
test
(ItemStack stack, @Nullable ClientWorld world, @Nullable LivingEntity entity, int seed, ItemDisplayContext displayContext) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
componentType
The field for thecomponentType
record component. -
ignoreDefault
private final boolean ignoreDefaultThe field for theignoreDefault
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/client/render/item/property/bool/HasComponentProperty;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_55376
Lnet/minecraft/class_10464;field_55376:Lcom/mojang/serialization/MapCodec;
official a
Lhox;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
HasComponentProperty
-
-
Method Details
-
test
public boolean test(ItemStack stack, @Nullable @Nullable ClientWorld world, @Nullable @Nullable LivingEntity entity, int seed, ItemDisplayContext displayContext) - Specified by:
test
in interfacePropertyTester
- Mappings:
Namespace Name Mixin selector named test
Lnet/minecraft/client/render/item/property/PropertyTester;test(Lnet/minecraft/item/ItemStack;Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/entity/LivingEntity;ILnet/minecraft/item/ItemDisplayContext;)Z
intermediary method_65638
Lnet/minecraft/class_10724;method_65638(Lnet/minecraft/class_1799;Lnet/minecraft/class_638;Lnet/minecraft/class_1309;ILnet/minecraft/class_811;)Z
official get
Lhpd;get(Ldcv;Lgrj;Lcam;ILdct;)Z
-
getCodec
- Specified by:
getCodec
in interfaceBooleanProperty
- Mappings:
Namespace Name Mixin selector named getCodec
Lnet/minecraft/client/render/item/property/bool/BooleanProperty;getCodec()Lcom/mojang/serialization/MapCodec;
intermediary method_65637
Lnet/minecraft/class_10460;method_65637()Lcom/mojang/serialization/MapCodec;
official a
Lhos;a()Lcom/mojang/serialization/MapCodec;
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
componentType
Returns the value of thecomponentType
record component.- Returns:
- the value of the
componentType
record component
-
ignoreDefault
public boolean ignoreDefault()Returns the value of theignoreDefault
record component.- Returns:
- the value of the
ignoreDefault
record component
-