Enum Class SectionCapabilities

java.lang.Object
java.lang.Enum<SectionCapabilities>
fr.prodrivers.bukkit.commons.sections.SectionCapabilities
All Implemented Interfaces:
Serializable, Comparable<SectionCapabilities>, Constable

public enum SectionCapabilities extends Enum<SectionCapabilities>
Define all section capabilities.

A capability is a way for a section to inform about what it handles and tune Prodrivers Commons' behavior when dealing with it.

  • Enum Constant Details

    • CUSTOM_SELECTION_UI

      public static final SectionCapabilities CUSTOM_SELECTION_UI
      Inform Prodrivers Commons that the section handles its UI by itself.
    • HUB

      public static final SectionCapabilities HUB
      Define that the section should be considered a hub. Players in parties can join hub sections by themselves, contrary to other sections.
    • PARTY_AWARE

      public static final SectionCapabilities PARTY_AWARE
      Inform Prodrivers Commons that the section handles party management by itself, and that Prodrivers Commons should not move party players for it.
    • SCOREBOARD_EXCLUSIVE

      public static final SectionCapabilities SCOREBOARD_EXCLUSIVE
      Inform Prodrivers Commons that the section handles scoreboards by itself and does not use Prodrivers Commons's Scoreboard infrastructure.
    • TRANSITIVE

      public static final SectionCapabilities TRANSITIVE
      Inform Prodrivers Commons that the section is transitive, meaning that a player should not stop here. Sections created by manager to fill holes in section tree expose this capability.
  • Method Details

    • values

      public static SectionCapabilities[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static SectionCapabilities valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null