
org.eclipse.rdf4j.rio.RioSetting Maven / Gradle / Ivy
/*******************************************************************************
* 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;
import java.io.Serializable;
/**
* Identifies a parser setting along with its default value.
*
* @author Peter Ansell
*/
public interface RioSetting extends Serializable {
/**
* A unique key for this parser setting.
*
* @return A unique key identifying this parser setting.
*/
String getKey();
/**
* The human readable name for this parser setting
*
* @return The name for this parser setting.
*/
String getDescription();
/**
* Returns the default value for this parser setting if it is not set by a user.
*
* @return The default value for this parser setting.
*/
T getDefaultValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy