Is there a way Eclipse will auto import classes from java package as java.util.List
without the need to choose it explicitly in every class?
(even without Ctrl + Shift + O)
When I write List and eclipse auto import java.util.List
instead of suggesting irrelevant List as org.apache.xmlbeans.impl.xb.xsdschema.ListDocument.List
I know I can exclude by Type Filters, but I just want specific objects as List to be automatically imported.
Automatically organise import statements whenever you save
Let Eclipse collapse imports in the same package a wildcard (.*) or always expand them
Exclude unwanted packages using Type Filters
some these other features
Folding: By default, Eclipse folds all import statements into one line so your class takes up less space on the screen. You can change this by going to Window > Preferences > Java > Editor > Folding and deselecting Imports.
Sorting: If you’re really particular about the order of packages, you can go to Window > Preferences > Java > Code Style > Organize Imports and define the order of the packages as you want Eclipse to order them. It’s not really worth the effort though so I’d skip it.