org.wikidata.query.rdf.tool.wikibase.Continue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools Show documentation
Show all versions of tools Show documentation
Tools to sync Wikibase to RDF stores. Also contains overall integration tests that rely on everything else.
The newest version!
package org.wikidata.query.rdf.tool.wikibase;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Continue {
private final String rcContinue;
private final String aContinue;
@JsonCreator
public Continue(
@JsonProperty("rccontinue") String rcContinue,
@JsonProperty("continue") String aContinue) {
this.rcContinue = rcContinue;
this.aContinue = aContinue;
}
public String getRcContinue() {
return rcContinue;
}
public String getContinue() {
return aContinue;
}
@Override
public String toString() {
return "Continue{rccontinue=" + rcContinue + ",continue=" + aContinue + "}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy