Class NumberConversions

java.lang.Object
org.bukkit.util.NumberConversions

public final class NumberConversions extends Object
Utils for casting number types to other number types
  • Method Details

    • floor

      public static int floor​(double num)
    • ceil

      public static int ceil​(double num)
    • round

      public static int round​(double num)
    • square

      public static double square​(double num)
    • toInt

      public static int toInt​(@Nullable @Nullable Object object)
    • toFloat

      public static float toFloat​(@Nullable @Nullable Object object)
    • toDouble

      public static double toDouble​(@Nullable @Nullable Object object)
    • toLong

      public static long toLong​(@Nullable @Nullable Object object)
    • toShort

      public static short toShort​(@Nullable @Nullable Object object)
    • toByte

      public static byte toByte​(@Nullable @Nullable Object object)
    • isFinite

      public static boolean isFinite​(double d)
    • isFinite

      public static boolean isFinite​(float f)
    • checkFinite

      public static void checkFinite​(double d, @NotNull @NotNull String message)
    • checkFinite

      public static void checkFinite​(float d, @NotNull @NotNull String message)