mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2025-01-04 22:29:05 +01:00
36 lines
749 B
Java
36 lines
749 B
Java
package com.Acrobot.ChestShop.Utils;
|
|
|
|
/**
|
|
* Checks if string is a numerical value
|
|
*
|
|
* @author Acrobot
|
|
*/
|
|
public class Numerical {
|
|
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;
|
|
}
|
|
}
|
|
}
|