Package valorless.rarespawns.compilers
Enum Class CompilerType
- All Implemented Interfaces:
Serializable,Comparable<CompilerType>,Constable
Categories of runtime-compiled script types supported by RareSpawns.
Used by the compiler to resolve source/compiled folder paths and to select the appropriate dynamic class loader.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAbility scripts located under plugins/RareSpawns/abilities/.Soul Power scripts located under plugins/RareSpawns/soulpowers/. -
Method Summary
Modifier and TypeMethodDescriptionpath()Relative data-folder path used for this compiler type.static CompilerTypeReturns the enum constant of this class with the specified name.static CompilerType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ABILITY
Ability scripts located under plugins/RareSpawns/abilities/. -
SOUL_POWER
Soul Power scripts located under plugins/RareSpawns/soulpowers/.
-
-
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
-
path
Relative data-folder path used for this compiler type.- Returns:
- the folder name ("abilities" or "soulpowers") within the plugin data directory
-