Package org.bukkit.event.player
Enum Class PlayerBedEnterEvent.BedEnterResult
java.lang.Object
java.lang.Enum<PlayerBedEnterEvent.BedEnterResult>
org.bukkit.event.player.PlayerBedEnterEvent.BedEnterResult
- All Implemented Interfaces:
- Serializable,- Comparable<PlayerBedEnterEvent.BedEnterResult>,- Constable
- Enclosing class:
- PlayerBedEnterEvent
public static enum PlayerBedEnterEvent.BedEnterResult
extends Enum<PlayerBedEnterEvent.BedEnterResult>
Represents the default possible outcomes of this event.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionThe world doesn't allow sleeping or saving the spawn point (eg, Nether, The End or Custom Worlds).Entering the bed is prevented due to it not being night nor thundering currently.Entering the bed is prevented due to there being monsters nearby.Bed was obstructed.The player will enter the bed.Entering the bed is prevented due to there being some other problem.Entering the bed is prevented due to the player being too far away.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static PlayerBedEnterEvent.BedEnterResult[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
OKThe player will enter the bed.
- 
NOT_POSSIBLE_HEREThe world doesn't allow sleeping or saving the spawn point (eg, Nether, The End or Custom Worlds). This is based onWorld.isBedWorks()andWorld.isNatural(). Entering the bed is prevented and ifWorld.isBedWorks()is false then the bed explodes.
- 
NOT_POSSIBLE_NOWEntering 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_AWAYEntering the bed is prevented due to the player being too far away.
- 
OBSTRUCTEDBed was obstructed.
- 
NOT_SAFEEntering the bed is prevented due to there being monsters nearby.
- 
OTHER_PROBLEMEntering the bed is prevented due to there being some other problem.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-