Record Class PackConfig

java.lang.Object
java.lang.Record
kr.toxicity.model.api.pack.PackConfig

public record PackConfig(boolean generateModernModel, boolean generateLegacyModel) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final PackConfig
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    PackConfig(boolean generateModernModel, boolean generateLegacyModel)
    Creates an instance of a PackConfig record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    static @NotNull PackConfig
    from(@NotNull org.bukkit.configuration.ConfigurationSection section)
     
    boolean
    Returns the value of the generateLegacyModel record component.
    boolean
    Returns the value of the generateModernModel record component.
    final int
    Returns a hash code value for this object.
    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
  • Field Details

    • DEFAULT

      public static final PackConfig DEFAULT
  • Constructor Details

    • PackConfig

      public PackConfig(boolean generateModernModel, boolean generateLegacyModel)
      Creates an instance of a PackConfig record class.
      Parameters:
      generateModernModel - the value for the generateModernModel record component
      generateLegacyModel - the value for the generateLegacyModel record component
  • Method Details

    • from

      @NotNull public static @NotNull PackConfig from(@NotNull @NotNull org.bukkit.configuration.ConfigurationSection section)
    • 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. All components in this record class 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.
    • generateModernModel

      public boolean generateModernModel()
      Returns the value of the generateModernModel record component.
      Returns:
      the value of the generateModernModel record component
    • generateLegacyModel

      public boolean generateLegacyModel()
      Returns the value of the generateLegacyModel record component.
      Returns:
      the value of the generateLegacyModel record component