All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.aqiu202.qrcode.util.UrlUtils Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.github.aqiu202.qrcode.util;

public final class UrlUtils {

    private UrlUtils() {
    }

    private static final String PREFIX_HTTP = "http://";
    private static final String PREFIX_HTTPS = "https://";

    public static boolean isOuterUrl(String url) {
        return url.startsWith(PREFIX_HTTP) || url.startsWith(PREFIX_HTTPS);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy