All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.rdf4j.rio.helpers.TriXParserSettings Maven / Gradle / Ivy

There is a newer version: 2.5.0-M2
Show newest version
/*******************************************************************************
 * Copyright (c) 2015 Eclipse RDF4J contributors, Aduna, and others.
 * 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.
 *******************************************************************************/
package org.eclipse.rdf4j.rio.helpers;

import org.eclipse.rdf4j.rio.RioSetting;

/**
 * ParserSettings for the TriX parser features.
 * 
 * @author Peter Ansell
 */
public class TriXParserSettings {

	/**
	 * Boolean setting for parser to determine whether missing datatypes in TriX are ignored.
	 * 

* Defaults to true. */ public static final RioSetting FAIL_ON_TRIX_MISSING_DATATYPE = new RioSettingImpl( "org.eclipse.rdf4j.rio.ignoretrixmissingdatatype", "Ignore TriX missing datatype", Boolean.TRUE); /** * Boolean setting for parser to determine whether invalid statements are ignored in TriX. *

* Defaults to true. */ public static final RioSetting FAIL_ON_TRIX_INVALID_STATEMENT = new RioSettingImpl( "org.eclipse.rdf4j.rio.ignoretrixmissingdatatype", "Ignore TriX missing datatype", Boolean.TRUE); /** * Private constructor */ private TriXParserSettings() { } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy