Record Class BuiltTemplate<T>

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

public record BuiltTemplate<T>(Class<T> contextType, Map<String,TemplateReplacer<T>> replacers, TemplateReplacer<T> anyReplacer, Map<ClickAction,TemplateClicker<T>> clickers, TemplateModifier<T> modifier, DefinedContexts<T> definedContexts, TemplateSlot<T> slotProvider, MenuListener initListener, ContextListener<T> contextListener) extends Record
  • Constructor Details

    • BuiltTemplate

      public BuiltTemplate(Class<T> contextType, Map<String,TemplateReplacer<T>> replacers, TemplateReplacer<T> anyReplacer, Map<ClickAction,TemplateClicker<T>> clickers, TemplateModifier<T> modifier, DefinedContexts<T> definedContexts, TemplateSlot<T> slotProvider, MenuListener initListener, ContextListener<T> contextListener)
      Creates an instance of a BuiltTemplate 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
      clickers - the value for the clickers record component
      modifier - the value for the modifier record component
      definedContexts - the value for the definedContexts record component
      slotProvider - the value for the slotProvider record component
      initListener - the value for the initListener record component
      contextListener - the value for the contextListener record component
  • Method Details

    • createEmpty

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

      public String applyReplacers(String input, Slate slate, org.bukkit.entity.Player player, ActiveMenu activeMenu, PlaceholderType type, T value)
    • handleClick

      public void handleClick(Set<ClickAction> actions, TemplateClick<T> templateClick)
    • 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,TemplateReplacer<T>> replacers()
      Returns the value of the replacers record component.
      Returns:
      the value of the replacers record component
    • anyReplacer

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

      public Map<ClickAction,TemplateClicker<T>> clickers()
      Returns the value of the clickers record component.
      Returns:
      the value of the clickers record component
    • modifier

      public TemplateModifier<T> modifier()
      Returns the value of the modifier record component.
      Returns:
      the value of the modifier record component
    • definedContexts

      public DefinedContexts<T> definedContexts()
      Returns the value of the definedContexts record component.
      Returns:
      the value of the definedContexts record component
    • slotProvider

      public TemplateSlot<T> slotProvider()
      Returns the value of the slotProvider record component.
      Returns:
      the value of the slotProvider record component
    • initListener

      public MenuListener initListener()
      Returns the value of the initListener record component.
      Returns:
      the value of the initListener record component
    • contextListener

      public ContextListener<T> contextListener()
      Returns the value of the contextListener record component.
      Returns:
      the value of the contextListener record component