Enum Class ScenarioSettingSource
- All Implemented Interfaces:
Serializable,Comparable<ScenarioSettingSource>,Constable
Where a resolved scenario setting value came from.
The order here is the resolution order: the first source that supplies a value wins.
- Since:
- 1.6.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn override stored on the source arena.The scenario's own declared default; nothing was configured.The global value inscenarios.yml.A temporary override applied to one match, normally from the waiting lobby or an addon. -
Method Summary
Modifier and TypeMethodDescriptionstatic ScenarioSettingSourceReturns the enum constant of this class with the specified name.static ScenarioSettingSource[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOBBY_OVERRIDE
A temporary override applied to one match, normally from the waiting lobby or an addon. -
ARENA_OVERRIDE
An override stored on the source arena. -
GLOBAL
The global value inscenarios.yml. -
DEFAULT
The scenario's own declared default; nothing was configured.
-
-
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
-