import static
means that you can references a static value without using the class name.
For example, consider these three classes:
package com.example;
public class foo {
public static int Suggestion = 5;
}
import com.example.foo;
public class b {
// …
int var = foo.Suggestion;
}
import static com.example.foo.Suggestion;
public class c {
// …
int var = Suggestion;
}