Enum Class SectionCapabilities
- All Implemented Interfaces:
Serializable
,Comparable<SectionCapabilities>
,Constable
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInform Prodrivers Commons that the section handles its UI by itself.Define that the section should be considered a hub.Inform Prodrivers Commons that the section handles party management by itself, and that Prodrivers Commons should not move party players for it.Inform Prodrivers Commons that the section handles scoreboards by itself and does not use Prodrivers Commons's Scoreboard infrastructure.Inform Prodrivers Commons that the section is transitive, meaning that a player should not stop here. -
Method Summary
Modifier and TypeMethodDescriptionstatic SectionCapabilities
Returns the enum constant of this class with the specified name.static SectionCapabilities[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CUSTOM_SELECTION_UI
Inform Prodrivers Commons that the section handles its UI by itself. -
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
Inform Prodrivers Commons that the section handles party management by itself, and that Prodrivers Commons should not move party players for it. -
SCOREBOARD_EXCLUSIVE
Inform Prodrivers Commons that the section handles scoreboards by itself and does not use Prodrivers Commons's Scoreboard infrastructure. -
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
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
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 nameNullPointerException
- if the argument is null
-