package org.jabref.logic.formatter.bibtexfields; import java.util.Objects; import org.jabref.logic.l10n.Localization; import org.jabref.model.cleanup.Formatter; import org.jabref.model.entry.AuthorList; /** * Formatter normalizing a list of person names to the BibTeX format. */ public class NormalizeNamesFormatter implements Formatter { @Override public String getName() { return Localization.lang("Normalize names of persons"); } @Override public String getKey() { return "normalize_names"; } @Override public String format(String nameList) { Objects.requireNonNull(nameList); AuthorList authorList = AuthorList.parse(nameList); return authorList.getAsLastFirstNamesWithAnd(false); } @Override public String getDescription() { return Localization.lang("Normalizes lists of persons to the BibTeX standard."); } @Override public String getExampleInput() { return "Albert Einstein and Alan Turing"; } }