Example usage for java.lang Package isCompatibleWith

List of usage examples for java.lang Package isCompatibleWith

Introduction

In this page you can find the example usage for java.lang Package isCompatibleWith.

Prototype

public boolean isCompatibleWith(String desired) throws NumberFormatException 

Source Link

Document

Compare this package's specification version with a desired version.

Usage

From source file:Main.java

public static void main(String[] args) {

    // get the java lang package
    Package pack = Package.getPackage("java.lang");

    // check if this package is compatible with version 1.4.6
    System.out.println("" + pack.isCompatibleWith("1.4.6"));

}