Enum Class PlayerResourcePackStatusEvent.Status
java.lang.Object
java.lang.Enum<PlayerResourcePackStatusEvent.Status>
com.velocitypowered.api.event.player.PlayerResourcePackStatusEvent.Status
- All Implemented Interfaces:
Serializable
,Comparable<PlayerResourcePackStatusEvent.Status>
,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 ConstantDescriptionThe player has accepted the resource pack and is now downloading it.The player declined to download the resource pack.The resource pack was discarded.The player has downloaded the resource pack.The player could not download the resource pack.The player failed to reload the resource pack.The URL of the resource pack failed to load.The resource pack was applied successfully. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns true if the resource pack status is intermediate, indicating that the player has either accepted the resource pack and is currently downloading it or has successfully downloaded it.Returns the enum constant of this class with the specified name.static PlayerResourcePackStatusEvent.Status[]
values()
Returns an array containing the constants of this enum class, 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. -
DOWNLOADED
The player has downloaded the resource pack. -
INVALID_URL
The URL of the resource pack failed to load. -
FAILED_RELOAD
The player failed to reload the resource pack. -
DISCARDED
The resource pack was discarded.
-
-
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
-
isIntermediate
public boolean isIntermediate()Returns true if the resource pack status is intermediate, indicating that the player has either accepted the resource pack and is currently downloading it or has successfully downloaded it.- Returns:
- true if the status is intermediate (ACCEPTED or DOWNLOADED), false otherwise
-