Package org.bukkit.event.weather
Enum Class LightningStrikeEvent.Cause
- All Implemented Interfaces:
Serializable
,Comparable<LightningStrikeEvent.Cause>
,Constable
- Enclosing class:
LightningStrikeEvent
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionTriggered by the /summon command.Triggered by a Plugin.Triggered by an enchantment but not a trident.Triggered by a Spawner.Triggered by a skeleton horse trap.Triggered by an enchanted trident.Unknown trigger.Triggered by weather. -
Method Summary
Modifier and TypeMethodDescriptionstatic LightningStrikeEvent.Cause
Returns the enum constant of this class with the specified name.static LightningStrikeEvent.Cause[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMMAND
Triggered by the /summon command. -
CUSTOM
Triggered by a Plugin. -
SPAWNER
Triggered by a Spawner. -
TRIDENT
Triggered by an enchanted trident. -
TRAP
Triggered by a skeleton horse trap. -
WEATHER
Triggered by weather. -
ENCHANTMENT
Triggered by an enchantment but not a trident. -
UNKNOWN
Unknown trigger.
-
-
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
-