Package ch.njol.skript.registrations
Enum Class Feature
- All Implemented Interfaces:
Serializable
,Comparable<Feature>
,Constable
,Experiment
Experimental feature toggles as provided by Skript itself.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Method Summary
Modifier and TypeMethodDescriptioncodeName()
A simple, printable code-name for this pattern for warnings and debugging.pattern()
phase()
static void
registerAll
(SkriptAddon addon, ExperimentRegistry manager) static Feature
Returns the enum constant of this class with the specified name.static Feature[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface org.skriptlang.skript.lang.experiment.Experiment
isKnown, matches
-
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
-
registerAll
-
codeName
Description copied from interface:Experiment
A simple, printable code-name for this pattern for warnings and debugging. Ideally, this should be matched by one of theExperiment.pattern()
entries.- Specified by:
codeName
in interfaceExperiment
- Returns:
- The code name of this experiment.
-
phase
- Specified by:
phase
in interfaceExperiment
- Returns:
- The safety phase of this feature.
-
pattern
- Specified by:
pattern
in interfaceExperiment
- Returns:
- The compiled matching pattern for this experiment
-