Package org.bukkit.event.weather
Enum LightningStrikeEvent.Cause
- java.lang.Object
-
- java.lang.Enum<LightningStrikeEvent.Cause>
-
- org.bukkit.event.weather.LightningStrikeEvent.Cause
-
- All Implemented Interfaces:
Serializable
,Comparable<LightningStrikeEvent.Cause>
- Enclosing class:
- LightningStrikeEvent
public static enum LightningStrikeEvent.Cause extends Enum<LightningStrikeEvent.Cause>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LightningStrikeEvent.Cause
valueOf(String name)
Returns the enum constant of this type with the specified name.static LightningStrikeEvent.Cause[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMAND
public static final LightningStrikeEvent.Cause COMMAND
Triggered by the /summon command.
-
TRIDENT
public static final LightningStrikeEvent.Cause TRIDENT
Triggered by an enchanted trident.
-
TRAP
public static final LightningStrikeEvent.Cause TRAP
Triggered by a skeleton horse trap.
-
WEATHER
public static final LightningStrikeEvent.Cause WEATHER
Triggered by weather.
-
UNKNOWN
public static final LightningStrikeEvent.Cause UNKNOWN
Unknown trigger.
-
-
Method Detail
-
values
public static LightningStrikeEvent.Cause[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LightningStrikeEvent.Cause c : LightningStrikeEvent.Cause.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LightningStrikeEvent.Cause valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-