I was working on a little Java program and was using arrays so I had done:
import java.util.Arrays;
Later I started expanding on what I had
The wildcard imports all classes and interfaces in that package.
However, the wildcard import does not import other packages that start with the same name.
For example, importing java.xml.* does not import the java.xml.bind package.