ChestShop-3/com/Acrobot/ChestShop/Utils/uNumber.java

36 lines
747 B
Java
Raw Normal View History

2011-05-15 19:33:03 +02:00
package com.Acrobot.ChestShop.Utils;
/**
* Checks if string is a numerical value
2011-05-29 13:25:25 +02:00
*
* @author Acrobot
*/
public class uNumber {
2011-05-29 13:25:25 +02:00
public static boolean isInteger(String string) {
try {
Integer.parseInt(string);
return true;
2011-05-29 13:25:25 +02:00
} catch (Exception e) {
return false;
}
}
2011-05-29 13:25:25 +02:00
public static boolean isFloat(String string) {
try {
Float.parseFloat(string);
return true;
2011-05-29 13:25:25 +02:00
} catch (Exception e) {
return false;
}
}
2011-05-29 13:25:25 +02:00
public static boolean isDouble(String string) {
try {
Double.parseDouble(string);
return true;
2011-05-29 13:25:25 +02:00
} catch (Exception e) {
return false;
}
}
}