Record Class GeyserCustomItemBedrockOptions

java.lang.Object
java.lang.Record
org.geysermc.geyser.item.custom.GeyserCustomItemBedrockOptions
All Implemented Interfaces:
org.geysermc.geyser.api.item.custom.v2.CustomItemBedrockOptions

public record GeyserCustomItemBedrockOptions(@Nullable String icon, boolean allowOffhand, boolean displayHandheld, int protectionValue, @NonNull org.geysermc.geyser.api.util.CreativeCategory creativeCategory, @Nullable String creativeGroup, @NonNull Set<org.geysermc.geyser.api.util.Identifier> tags) extends Record implements org.geysermc.geyser.api.item.custom.v2.CustomItemBedrockOptions
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    GeyserCustomItemBedrockOptions(@Nullable String icon, boolean allowOffhand, boolean displayHandheld, int protectionValue, @NonNull org.geysermc.geyser.api.util.CreativeCategory creativeCategory, @Nullable String creativeGroup, @NonNull Set<org.geysermc.geyser.api.util.Identifier> tags)
    Creates an instance of a GeyserCustomItemBedrockOptions record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns the value of the allowOffhand record component.
    @NonNull org.geysermc.geyser.api.util.CreativeCategory
    Returns the value of the creativeCategory record component.
    @Nullable String
    Returns the value of the creativeGroup record component.
    boolean
    Returns the value of the displayHandheld record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    @Nullable String
    Returns the value of the icon record component.
    int
    Returns the value of the protectionValue record component.
    int
     
    @NonNull Set<org.geysermc.geyser.api.util.Identifier>
    Returns the value of the tags record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • GeyserCustomItemBedrockOptions

      public GeyserCustomItemBedrockOptions(@Nullable String icon, boolean allowOffhand, boolean displayHandheld, int protectionValue, @NonNull org.geysermc.geyser.api.util.CreativeCategory creativeCategory, @Nullable String creativeGroup, @NonNull Set<org.geysermc.geyser.api.util.Identifier> tags)
      Creates an instance of a GeyserCustomItemBedrockOptions record class.
      Parameters:
      icon - the value for the icon record component
      allowOffhand - the value for the allowOffhand record component
      displayHandheld - the value for the displayHandheld record component
      protectionValue - the value for the protectionValue record component
      creativeCategory - the value for the creativeCategory record component
      creativeGroup - the value for the creativeGroup record component
      tags - the value for the tags record component
  • Method Details

    • protectionValue

      public int protectionValue()
      Returns the value of the protectionValue record component.
      Specified by:
      protectionValue in interface org.geysermc.geyser.api.item.custom.v2.CustomItemBedrockOptions
      Returns:
      the value of the protectionValue record component
    • protectionValue

      public int protectionValue(CustomItemContext context)
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • icon

      public @Nullable String icon()
      Returns the value of the icon record component.
      Specified by:
      icon in interface org.geysermc.geyser.api.item.custom.v2.CustomItemBedrockOptions
      Returns:
      the value of the icon record component
    • allowOffhand

      public boolean allowOffhand()
      Returns the value of the allowOffhand record component.
      Specified by:
      allowOffhand in interface org.geysermc.geyser.api.item.custom.v2.CustomItemBedrockOptions
      Returns:
      the value of the allowOffhand record component
    • displayHandheld

      public boolean displayHandheld()
      Returns the value of the displayHandheld record component.
      Specified by:
      displayHandheld in interface org.geysermc.geyser.api.item.custom.v2.CustomItemBedrockOptions
      Returns:
      the value of the displayHandheld record component
    • creativeCategory

      public @NonNull org.geysermc.geyser.api.util.CreativeCategory creativeCategory()
      Returns the value of the creativeCategory record component.
      Specified by:
      creativeCategory in interface org.geysermc.geyser.api.item.custom.v2.CustomItemBedrockOptions
      Returns:
      the value of the creativeCategory record component
    • creativeGroup

      public @Nullable String creativeGroup()
      Returns the value of the creativeGroup record component.
      Specified by:
      creativeGroup in interface org.geysermc.geyser.api.item.custom.v2.CustomItemBedrockOptions
      Returns:
      the value of the creativeGroup record component
    • tags

      public @NonNull Set<org.geysermc.geyser.api.util.Identifier> tags()
      Returns the value of the tags record component.
      Specified by:
      tags in interface org.geysermc.geyser.api.item.custom.v2.CustomItemBedrockOptions
      Returns:
      the value of the tags record component