public static long toLong(String value, long def) {
        if (isEmpty(value)) {
            return def;
        }