Package org.bukkit.event.player
Enum PlayerBedEnterEvent.BedEnterResult
- java.lang.Object
-
- java.lang.Enum<PlayerBedEnterEvent.BedEnterResult>
-
- org.bukkit.event.player.PlayerBedEnterEvent.BedEnterResult
-
- All Implemented Interfaces:
Serializable
,Comparable<PlayerBedEnterEvent.BedEnterResult>
- Enclosing class:
- PlayerBedEnterEvent
public static enum PlayerBedEnterEvent.BedEnterResult extends Enum<PlayerBedEnterEvent.BedEnterResult>
Represents the default possible outcomes of this event.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NOT_POSSIBLE_HERE
The world doesn't allow sleeping (ex.NOT_POSSIBLE_NOW
Entering the bed is prevented due to it not being night nor thundering currently.NOT_SAFE
Entering the bed is prevented due to there being monsters nearby.OK
The player will enter the bed.OTHER_PROBLEM
Entering the bed is prevented due to there being some other problem.TOO_FAR_AWAY
Entering the bed is prevented due to the player being too far away.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PlayerBedEnterEvent.BedEnterResult
valueOf(String name)
Returns the enum constant of this type with the specified name.static PlayerBedEnterEvent.BedEnterResult[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OK
public static final PlayerBedEnterEvent.BedEnterResult OK
The player will enter the bed.
-
NOT_POSSIBLE_HERE
public static final PlayerBedEnterEvent.BedEnterResult NOT_POSSIBLE_HERE
The world doesn't allow sleeping (ex. Nether or The End). Entering the bed is prevented and the bed explodes.
-
NOT_POSSIBLE_NOW
public static final PlayerBedEnterEvent.BedEnterResult NOT_POSSIBLE_NOW
Entering the bed is prevented due to it not being night nor thundering currently.If the event is forcefully allowed during daytime, the player will enter the bed (and set its bed location), but might get immediately thrown out again.
-
TOO_FAR_AWAY
public static final PlayerBedEnterEvent.BedEnterResult TOO_FAR_AWAY
Entering the bed is prevented due to the player being too far away.
-
NOT_SAFE
public static final PlayerBedEnterEvent.BedEnterResult NOT_SAFE
Entering the bed is prevented due to there being monsters nearby.
-
OTHER_PROBLEM
public static final PlayerBedEnterEvent.BedEnterResult OTHER_PROBLEM
Entering the bed is prevented due to there being some other problem.
-
-
Method Detail
-
values
public static PlayerBedEnterEvent.BedEnterResult[] 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 (PlayerBedEnterEvent.BedEnterResult c : PlayerBedEnterEvent.BedEnterResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlayerBedEnterEvent.BedEnterResult 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
-
-