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

org.apache.commons.rdf.api.QuadLike Maven / Gradle / Ivy

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.commons.rdf.api;

import java.util.Optional;

/**
 * A generalised "quad-like" interface, extended by {@link Quad}.
 * 

* A QuadLike statement has at least a {@link #getSubject()}, * {@link #getPredicate()}, {@link #getObject()} and {@link #getGraphName()}, * but unlike a {@link Quad} does not have a formalised * {@link Quad#equals(Object)} or {@link Quad#hashCode()} semantics and is not * required to be immutable or thread-safe. This interface can * also be used for generalised quads (e.g. a {@link BlankNode} as * predicate). *

* Implementations should specialise which specific {@link RDFTerm} types they * return by overriding {@link #getSubject()}, {@link #getPredicate()}, * {@link #getObject()} and {@link #getGraphName()}. * * @since 0.3.0-incubating * @see Quad */ public interface QuadLike extends TripleLike { /** * The graph name (graph label) of this statement, if present. *

* If {@link Optional#isPresent()}, then the {@link Optional#get()} indicate * the graph name of this statement. If the graph name is not present,e.g. * the value is {@link Optional#empty()}, it indicates that this Quad is in * the default graph. * * @return If {@link Optional#isPresent()}, the graph name of this quad, * otherwise {@link Optional#empty()}, indicating the default graph. * The graph name is typically an {@link IRI} or {@link BlankNode}. */ Optional getGraphName(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy