![JAR search and dependency download from the Maven repository](/logo.png)
info.freelibrary.marc4j.impl.SortedMarcFactoryImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of freelib-marc4j Show documentation
Show all versions of freelib-marc4j Show documentation
An easy to use Application Programming Interface (API) for working with MARC and MARCXML in
Java.
package info.freelibrary.marc4j.impl;
import org.marc4j.marc.Leader;
import org.marc4j.marc.Record;
/**
* @author Robert Haschart
*/
public class SortedMarcFactoryImpl extends MarcFactoryImpl {
/**
* Returns a new {@link Record} from the supplied {@link Leader}.
*/
public Record newRecord(Leader leader) {
Record record = new SortedRecordImpl();
record.setLeader(leader);
return record;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy