ERCoupons is a tool to allow owners to monetize their EULA friendly servers.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
516 B

package com.entryrise.coupons.utils;
public class MathUtils {
public static int toMegaByte(long bytes) {
return (int) (bytes / 1048576);
}
public static boolean isInt(String str) {
try {
int d = Integer.parseInt(str);
d = d + 1;
} catch (NumberFormatException nfe) {
return false;
}
return true;
}
public static boolean isDouble(String str) {
try {
double d = Double.parseDouble(str);
d = d + 1;
} catch (NumberFormatException nfe) {
return false;
}
return true;
}
}