mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-09 04:03:09 +01:00
e27cdfb70c
- Renamed a lot of things - Added chest masking option
36 lines
747 B
Java
36 lines
747 B
Java
package com.Acrobot.ChestShop.Utils;
|
|
|
|
/**
|
|
* Checks if string is a numerical value
|
|
*
|
|
* @author Acrobot
|
|
*/
|
|
public class uNumber {
|
|
public static boolean isInteger(String string) {
|
|
try {
|
|
Integer.parseInt(string);
|
|
return true;
|
|
} catch (Exception e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public static boolean isFloat(String string) {
|
|
try {
|
|
Float.parseFloat(string);
|
|
return true;
|
|
} catch (Exception e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public static boolean isDouble(String string) {
|
|
try {
|
|
Double.parseDouble(string);
|
|
return true;
|
|
} catch (Exception e) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|