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

dev.soffa.foundation.commons.JavaUtil Maven / Gradle / Ivy

There is a newer version: 0.17.31
Show newest version
package dev.soffa.foundation.commons;


public final class JavaUtil {

    private JavaUtil() {
    }

    public static boolean isJava8() {
        String versions = System.getProperty("java.version").toString();
        int version = Integer.parseInt(System.getProperty("java.version").split("\\.")[0]);
        return versions.startsWith("1.8") || version == 8;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy