Search in sources :

Example 1 with LibraryOfCongress

use of org.jabref.logic.importer.fetcher.LibraryOfCongress in project jabref by JabRef.

the class WebFetchers method getIdBasedFetchers.

public static List<IdBasedFetcher> getIdBasedFetchers(ImportFormatPreferences importFormatPreferences) {
    ArrayList<IdBasedFetcher> list = new ArrayList<>();
    list.add(new ArXiv(importFormatPreferences));
    list.add(new AstrophysicsDataSystem(importFormatPreferences));
    list.add(new IsbnFetcher(importFormatPreferences));
    list.add(new DiVA(importFormatPreferences));
    list.add(new DoiFetcher(importFormatPreferences));
    list.add(new MedlineFetcher());
    list.add(new TitleFetcher(importFormatPreferences));
    list.add(new MathSciNet(importFormatPreferences));
    list.add(new CrossRef());
    list.add(new LibraryOfCongress());
    list.sort(Comparator.comparing(WebFetcher::getName));
    return list;
}
Also used : DoiFetcher(org.jabref.logic.importer.fetcher.DoiFetcher) MedlineFetcher(org.jabref.logic.importer.fetcher.MedlineFetcher) ArrayList(java.util.ArrayList) AstrophysicsDataSystem(org.jabref.logic.importer.fetcher.AstrophysicsDataSystem) LibraryOfCongress(org.jabref.logic.importer.fetcher.LibraryOfCongress) DiVA(org.jabref.logic.importer.fetcher.DiVA) IsbnFetcher(org.jabref.logic.importer.fetcher.IsbnFetcher) MathSciNet(org.jabref.logic.importer.fetcher.MathSciNet) CrossRef(org.jabref.logic.importer.fetcher.CrossRef) TitleFetcher(org.jabref.logic.importer.fetcher.TitleFetcher) ArXiv(org.jabref.logic.importer.fetcher.ArXiv)

Aggregations

ArrayList (java.util.ArrayList)1 ArXiv (org.jabref.logic.importer.fetcher.ArXiv)1 AstrophysicsDataSystem (org.jabref.logic.importer.fetcher.AstrophysicsDataSystem)1 CrossRef (org.jabref.logic.importer.fetcher.CrossRef)1 DiVA (org.jabref.logic.importer.fetcher.DiVA)1 DoiFetcher (org.jabref.logic.importer.fetcher.DoiFetcher)1 IsbnFetcher (org.jabref.logic.importer.fetcher.IsbnFetcher)1 LibraryOfCongress (org.jabref.logic.importer.fetcher.LibraryOfCongress)1 MathSciNet (org.jabref.logic.importer.fetcher.MathSciNet)1 MedlineFetcher (org.jabref.logic.importer.fetcher.MedlineFetcher)1 TitleFetcher (org.jabref.logic.importer.fetcher.TitleFetcher)1