Files
Bat/src/main/java/cc/fascinated/bat/common/LongUtils.java
2024-07-04 09:15:26 +01:00

22 lines
464 B
Java

package cc.fascinated.bat.common;
/**
* @author Fascinated (fascinated7)
*/
public class LongUtils {
/**
* Checks if a string is a long
*
* @param string the string to check
* @return if the string is a long
*/
public static boolean isLong(String string) {
try {
Long.parseLong(string);
return true;
} catch (NumberFormatException exception) {
return false;
}
}
}