org.eclipse.rdf4j.model.package-info Maven / Gradle / Ivy
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
*******************************************************************************/
/**
* The RDF Model API
*
* The core RDF model interfaces are organized in the following hierarchy:
*
*
*
* Value Statement Model
* / \
* / \
* Resource Literal
* / \
* / \
* IRI BNode
*
*
* An individual RDF triple or statement is represented by the {@link org.eclipse.rdf4j.model.Statement Statement}
* interface. Collections of RDF statements are represented by the {@link org.eclipse.rdf4j.model.Model Model}
* interface.
*
*
* Creation of new Model elements ({@link org.eclipse.rdf4j.model.IRI IRI}, {@link org.eclipse.rdf4j.model.Literal
* Literal}, {@link org.eclipse.rdf4j.model.BNode BNode}, {@link org.eclipse.rdf4j.model.Statement Statement}) is done
* by means of a {@link org.eclipse.rdf4j.model.ValueFactory ValueFactory}.
*
*
* @see RDF4J model documentation
*/
package org.eclipse.rdf4j.model;