Take the following class for example:
public final class ClassName {
public static final void TEST() {}
public static final Object TEST;
}
Now, from another file, I want to import static ClassName.TEST(), but not ClassName.TEST.
How would I go about importing a method but not an identically named field, or vice versa?