public static int toInt(String value, int def) {
        if (isEmpty(value)) {
            return def;
        }
        try {