Enum PlayerResourcePackStatusEvent.Status
java.lang.Object
java.lang.Enum<PlayerResourcePackStatusEvent.Status>
com.velocitypowered.api.event.player.PlayerResourcePackStatusEvent.Status
- All Implemented Interfaces:
Serializable
,Comparable<PlayerResourcePackStatusEvent.Status>
,java.lang.constant.Constable
- Enclosing class:
- PlayerResourcePackStatusEvent
public static enum PlayerResourcePackStatusEvent.Status
extends Enum<PlayerResourcePackStatusEvent.Status>
Represents the possible statuses for the resource pack.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe player has accepted the resource pack and is now downloading it.The player declined to download the resource pack.The player could not download the resource pack.The resource pack was applied successfully. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static PlayerResourcePackStatusEvent.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SUCCESSFUL
The resource pack was applied successfully. -
DECLINED
The player declined to download the resource pack. -
FAILED_DOWNLOAD
The player could not download the resource pack. -
ACCEPTED
The player has accepted the resource pack and is now downloading it.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-