Java : Auto import static methods in IDEs
In Java 1.5 the static method import concept was introduced.Before that whenever we are using static method we used to invoke static method on class name like Integer.parseInt(“1”). But by using static method import we can directly call parseInt(“1”) method in our code. For this to work we need to import like below. In general…