Class MinecraftServer

java.lang.Object
net.pinger.disguise.server.MinecraftServer
All Implemented Interfaces:
Comparable<MinecraftServer>

public final class MinecraftServer extends Object implements Comparable<MinecraftServer>
  • Field Details

  • Constructor Details

    • MinecraftServer

      public MinecraftServer(String version)
  • Method Details

    • fromRaw

      public static MinecraftServer fromRaw(String rawVersion)
      This method creates a new instance of this class by using the rawVersion from the BukkitAPI.
      Parameters:
      rawVersion - the rawVersion
      Returns:
      the new instance
    • fromRaw

      public static MinecraftServer fromRaw()
      This method creates a new instance of this class by using the Bukkit.getVersion() version.
      Returns:
      the new instance
    • isVersion

      public static boolean isVersion(String otherVersion)
      This method checks if the current server version is equal to the specified version.

      Note that the specified string should be split, not given by the raw value. For example: 1.7.10, 1.8.8

      Parameters:
      otherVersion - the version to compare to
      Returns:
      if the server version is equal to the specified one
    • atLeast

      public static boolean atLeast(MinecraftServer otherServer)
      This method checks if the current server version is greater or equal to the specified version by comparing the two MinecraftServer references.
      Parameters:
      otherServer - the specified server version
      Returns:
      the compared value
    • atLeast

      public static boolean atLeast(String otherVersion)
      This method checks if the current server version is greater or equal to the specified version.
      Parameters:
      otherVersion - the specified version
      Returns:
      the compared value
    • getVersion

      public String getVersion()
      This method returns the version of this minecraft server.
      Returns:
      the version
    • compareTo

      public int compareTo(@Nonnull MinecraftServer o)
      Specified by:
      compareTo in interface Comparable<MinecraftServer>
    • toString

      public String toString()
      Overrides:
      toString in class Object