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

org.apache.clerezza.Literal Maven / Gradle / Ivy

Go to download

Apache Clerezza API implements the RDF data model as defined by http://www.w3.org/TR/rdf11-concepts/

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor  license  agreements.  See the NOTICE file distributed
 * with this work  for  additional  information  regarding  copyright
 * ownership.  The ASF  licenses  this file to you under  the  Apache
 * License, Version 2.0 (the "License"); you may not  use  this  file
 * except in compliance with the License.  You may obtain  a copy  of
 * the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless  required  by  applicable law  or  agreed  to  in  writing,
 * software  distributed  under  the  License  is  distributed  on an
 * "AS IS"  BASIS,  WITHOUT  WARRANTIES  OR  CONDITIONS  OF ANY KIND,
 * either  express  or implied.  See  the License  for  the  specific
 * language governing permissions and limitations under  the License.
 */
package org.apache.clerezza;

/**
 * Represents a literal value that can be a node in an RDF Graph.
 * Literals are used to identify values such as numbers and dates by
 * means of a lexical representation. There are two types of literals
 * represented by the subinterfaces {@link PlainLiteral}
 * and {@link TypedLiteral}
 *
 * @author reto
 */
public interface Literal extends RDFTerm {

    /**
     * The lexical form of this literal, represented by a Unicode string.
     *
     * @return The lexical form of this literal.
     * @see RDF-1.1
     * Literal lexical form
     */
    String getLexicalForm();

    /**
     * The IRI identifying the datatype that determines how the lexical form
     * maps to a literal value.
     *
     * @return The datatype IRI for this literal.
     * @see RDF-1.1
     * Literal datatype IRI
     */
    IRI getDataType();

    /**
     * If and only if the datatype IRI is http://www.w3.org/1999/02/22-rdf-syntax-ns#langString, the language
     * tag for this Literal is a language tag as defined by BCP47.
* If the datatype IRI is not http://www.w3.org/1999/02/22-rdf-syntax-ns#langString, this method * must null. * * @return The language tag of the literal or null if no language tag is defined * @see RDF-1.1 * Literal language tag */ public Language getLanguage(); /** * Returns true if obj is an instance of * literal that is term-equal with this, false otherwise *

* Two literals are term-equal (the same RDF literal) if and only if the * two lexical forms, the two datatype IRIs, and the two language tags (if * any) compare equal, character by character. * * @return true if obj equals this, false otherwise. */ public boolean equals(Object obj); /** * Returns the hash code of the lexical form plus the hash code of the * datatype plus if the literal has a language the hash code of the * language. * * @return hash code */ public int hashCode(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy