Enum Class ServerEnvironment
- All Implemented Interfaces:
Serializable, Comparable<ServerEnvironment>, Constable
Used to check the environment the server is running.
Useful when different environments require different implementations.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic booleanisBukkit()static booleanisFolia()static booleanstatic booleanisPaper()static booleanisPurpur()static booleanisSpigot()static ServerEnvironmentReturns the enum constant of this class with the specified name.static ServerEnvironment[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PURPUR
-
FOLIA
-
MOCK_BUKKIT
-
PAPER
-
SPIGOT
-
BUKKIT
-
-
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
-
isPurpur
public static boolean isPurpur()- Returns:
- Whether the server is running Purpur, or a fork of it.
-
isMockBukkit
public static boolean isMockBukkit()- Returns:
- Whether the server is MockBukkit's ServerMock
-
isFolia
public static boolean isFolia()- Returns:
- Whether the server is running Folia, or a fork of it.
-
isPaper
public static boolean isPaper()- Returns:
- Whether the server is running Paper, or a fork of it.
-
isSpigot
public static boolean isSpigot()- Returns:
- Whether the server is running Spigot, or a fork of it.
-
isBukkit
public static boolean isBukkit()- Returns:
- Whether the server is running Bukkit, or a fork of it.
-