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

org.eclipse.rdf4j.rio.LanguageHandler Maven / Gradle / Ivy

There is a newer version: 5.0.2
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.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 *******************************************************************************/
package org.eclipse.rdf4j.rio;

import org.eclipse.rdf4j.model.Literal;
import org.eclipse.rdf4j.model.ValueFactory;
import org.eclipse.rdf4j.model.util.LiteralUtilException;

/**
 * An interface defining methods related to verification and normalization of language tags.
 * 

* The language handler may optionally provide normalization and verification services for string literals based on the * language tags, including translation, grammar and spelling checks. However, this behavior is entirely driven by the * user. * * @author Peter Ansell */ public interface LanguageHandler { /** * Identifier for the language tag format defined by RFC3066, which is referenced by the RDF-1.0 specification. */ String RFC3066 = "org.eclipse.rdf4j.rio.languages.RFC3066"; /** * Identifier for the language tag format defined by RFC4646, which obsoletes RFC3066, but which is not referenced * by the RDF specification. */ String RFC4646 = "org.eclipse.rdf4j.rio.languages.RFC4646"; /** * Identifier for the language tag format defined by BCP47, which is referenced by the RDF-1.1 specification. */ String BCP47 = "org.eclipse.rdf4j.rio.languages.BCP47"; /** * Checks if the given language tag is recognized by this language handler, including cases where the language tag * is considered syntactically well-formed, but is not yet normalized. * * @param languageTag The language tag to check. * @return True if the language tag is syntactically well-formed and could be used with * {@link #verifyLanguage(String, String)} and {@link #normalizeLanguage(String, String, ValueFactory)}. */ boolean isRecognizedLanguage(String languageTag); /** * Verifies that the language tag is syntactically well-formed, optionally including an automated check on the * literal value being a match for the given tag. *

* This method must only be called after verifying that {@link #isRecognizedLanguage(String)} returns true for the * given language tag. * * @param literalValue Literal value matching the given language tag. * @param languageTag A language tag that matched with {@link #isRecognizedLanguage(String)}. * @return True if the language tag is recognized by this language handler, and it is verified to be syntactically * valid. * @throws LiteralUtilException If the language tag was not recognized. */ boolean verifyLanguage(String literalValue, String languageTag) throws LiteralUtilException; /** * Normalize both the language tag and the language if appropriate, and use the given value factory to generate a * literal matching the literal value and language tag. *

* This method must only be called after verifying that {@link #isRecognizedLanguage(String)} returns true for the * given language tag, and {@link #verifyLanguage(String, String)} also returns true for the given language and * literal value. * * @param literalValue Required literal value to use in the normalization process and to provide the value for the * resulting literal. * @param languageTag The language tag which is to be normalized. This tag is available in normalized form from the * result using {@link Literal#getLanguage()}. * @param valueFactory The {@link ValueFactory} to use to create the result literal. * @return A {@link Literal} containing the normalized literal value and language tag. * @throws LiteralUtilException If the language tag was not recognized or verified, or the literal value could not * be normalized due to an error. */ Literal normalizeLanguage(String literalValue, String languageTag, ValueFactory valueFactory) throws LiteralUtilException; /** * A unique key for this language handler to identify it in the LanguageHandlerRegistry. * * @return A unique string key. */ String getKey(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy