de.tblsoft.solr.pipeline.bean.DocumentBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solr-cmd-utils Show documentation
Show all versions of solr-cmd-utils Show documentation
A command line util for solr.
The newest version!
package de.tblsoft.solr.pipeline.bean;
/**
* Created by tblsoft on 26.04.16.
*/
public class DocumentBuilder {
private Document document = new Document();
public static DocumentBuilder document() {
return new DocumentBuilder();
}
public DocumentBuilder field(String name, String value) {
document.addField(name,value);
return this;
}
public Document create() {
return document;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy