Enum Class ServerEnvironment

java.lang.Object
java.lang.Enum<ServerEnvironment>
net.insprill.spigotutils.ServerEnvironment
All Implemented Interfaces:
Serializable, Comparable<ServerEnvironment>, Constable

public enum ServerEnvironment extends Enum<ServerEnvironment>
Used to check the environment the server is running. Useful when different environments require different implementations.
  • Enum Constant Details

  • Method Details

    • values

      public static ServerEnvironment[] 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

      public static ServerEnvironment valueOf(String name)
      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 name
      NullPointerException - 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.