Record Class BuiltComponent<T>

java.lang.Object
java.lang.Record
dev.aurelium.slate.builder.BuiltComponent<T>

public record BuiltComponent<T>(Class<T> contextType, Map<String,ComponentReplacer<T>> replacers, ComponentReplacer<T> anyReplacer, ComponentVisibility<T> visibility, ComponentInstances<T> instances) extends Record
  • Constructor Details

    • BuiltComponent

      public BuiltComponent(Class<T> contextType, Map<String,ComponentReplacer<T>> replacers, ComponentReplacer<T> anyReplacer, ComponentVisibility<T> visibility, ComponentInstances<T> instances)
      Creates an instance of a BuiltComponent record class.
      Parameters:
      contextType - the value for the contextType record component
      replacers - the value for the replacers record component
      anyReplacer - the value for the anyReplacer record component
      visibility - the value for the visibility record component
      instances - the value for the instances record component
  • Method Details

    • createEmpty

      public static <T> BuiltComponent<T> createEmpty(Class<T> contextType)
    • applyReplacers

      public String applyReplacers(String input, Slate slate, org.bukkit.entity.Player player, ActiveMenu activeMenu, ComponentData componentData, T value)
    • 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 Objects::equals(Object,Object).
      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.
    • contextType

      public Class<T> contextType()
      Returns the value of the contextType record component.
      Returns:
      the value of the contextType record component
    • replacers

      public Map<String,ComponentReplacer<T>> replacers()
      Returns the value of the replacers record component.
      Returns:
      the value of the replacers record component
    • anyReplacer

      public ComponentReplacer<T> anyReplacer()
      Returns the value of the anyReplacer record component.
      Returns:
      the value of the anyReplacer record component
    • visibility

      public ComponentVisibility<T> visibility()
      Returns the value of the visibility record component.
      Returns:
      the value of the visibility record component
    • instances

      public ComponentInstances<T> instances()
      Returns the value of the instances record component.
      Returns:
      the value of the instances record component