org.eclipse.rdf4j.rio.turtlestar.TurtleStarParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdf4j-rio-turtle Show documentation
Show all versions of rdf4j-rio-turtle Show documentation
Rio parser and writer implementation for the Turtle file format.
The newest version!
/*******************************************************************************
* Copyright (c) 2020 Eclipse RDF4J contributors.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Distribution License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
package org.eclipse.rdf4j.rio.turtlestar;
import java.io.IOException;
import org.eclipse.rdf4j.model.Value;
import org.eclipse.rdf4j.model.ValueFactory;
import org.eclipse.rdf4j.model.impl.SimpleValueFactory;
import org.eclipse.rdf4j.rio.RDFFormat;
import org.eclipse.rdf4j.rio.RDFHandlerException;
import org.eclipse.rdf4j.rio.RDFParseException;
import org.eclipse.rdf4j.rio.turtle.TurtleParser;
/**
* RDF parser for Turtle-star (an extension of Turtle that adds RDF-star support).
*
* @author Pavel Mihaylov
*/
public class TurtleStarParser extends TurtleParser {
/**
* Creates a new TurtleStarParser that will use a {@link SimpleValueFactory} to create RDF-star model objects.
*/
public TurtleStarParser() {
super();
}
/**
* Creates a new TurtleStarParser that will use the supplied ValueFactory to create RDF-star model objects.
*
* @param valueFactory A ValueFactory.
*/
public TurtleStarParser(ValueFactory valueFactory) {
super(valueFactory);
}
@Override
public RDFFormat getRDFFormat() {
return RDFFormat.TURTLESTAR;
}
@Override
protected Value parseValue() throws IOException, RDFParseException, RDFHandlerException {
if (peekIsTripleValue()) {
return parseTripleValue();
}
return super.parseValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy