I know this question has been asked a lot on importing two classes and instead omitting the import for both and calling full path whenever you want to use. My question related to this is can we just import one, use that one without the full path and write the full path of the other.
e.g.
import com.stackoverflow.FirstOne
firstOne ok = new FirstOne();
com.another.folder.firstOne isthisOk = new firstOne();
importsare just to make developer life simple. Internally Java represents everything with fully qualified.