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

com.headius.invokebinder.Util Maven / Gradle / Ivy

package com.headius.invokebinder;

/**
 * Created by headius on 6/27/17.
 */
public class Util {
    public static boolean isJava9() {
        try {
            return System.getProperty("java.specification.version", "").equals("9");
        } catch (Exception e) {
            return false;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy