Package org.bukkit.entity
Enum Class FishHook.HookState
- All Implemented Interfaces:
Serializable
,Comparable<FishHook.HookState>
,Constable
- Enclosing interface:
FishHook
Represents a state in which a fishing hook may be.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe fishing hook is bobbing in the water, waiting for a bite.The fishing hook has hooked an entity.The fishing hook has been cast and is either in the air or resting against a block on the ground. -
Method Summary
Modifier and TypeMethodDescriptionstatic FishHook.HookState
Returns the enum constant of this class with the specified name.static FishHook.HookState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNHOOKED
The fishing hook has been cast and is either in the air or resting against a block on the ground. -
HOOKED_ENTITY
The fishing hook has hooked an entity. -
BOBBING
The fishing hook is bobbing in the water, waiting for a bite.
-
-
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
-