Record Class ArmorTrim
java.lang.Object
java.lang.Record
net.minestom.server.item.component.ArmorTrim
public record ArmorTrim(DynamicRegistry.Key<TrimMaterial> material, DynamicRegistry.Key<TrimPattern> pattern, boolean showInTooltip)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionstatic final BinaryTagSerializer
<ArmorTrim> static final NetworkBuffer.Type
<ArmorTrim> -
Constructor Summary
ConstructorDescriptionArmorTrim
(DynamicRegistry.Key<TrimMaterial> material, DynamicRegistry.Key<TrimPattern> pattern, boolean showInTooltip) Creates an instance of aArmorTrim
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.material()
Returns the value of thematerial
record component.pattern()
Returns the value of thepattern
record component.boolean
Returns the value of theshowInTooltip
record component.final String
toString()
Returns a string representation of this record class.@NotNull ArmorTrim
withTooltip
(boolean showInTooltip)
-
Field Details
-
NETWORK_TYPE
-
NBT_TYPE
-
-
Constructor Details
-
ArmorTrim
public ArmorTrim(@NotNull DynamicRegistry.Key<TrimMaterial> material, @NotNull DynamicRegistry.Key<TrimPattern> pattern, boolean showInTooltip) Creates an instance of aArmorTrim
record class.- Parameters:
material
- the value for thematerial
record componentpattern
- the value for thepattern
record componentshowInTooltip
- the value for theshowInTooltip
record component
-
-
Method Details
-
withTooltip
-
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 '=='. -
material
Returns the value of thematerial
record component.- Returns:
- the value of the
material
record component
-
pattern
Returns the value of thepattern
record component.- Returns:
- the value of the
pattern
record component
-
showInTooltip
public boolean showInTooltip()Returns the value of theshowInTooltip
record component.- Returns:
- the value of the
showInTooltip
record component
-