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

org.apache.jena.graph.LiteralNode Maven / Gradle / Ivy

There is a newer version: 2.9.5
Show newest version
/*
 * Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
 *
 * See the AUTHORS file(s) distributed with this work for additional
 * information regarding authorship.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 *
 * SPDX-License-Identifier: MPL-2.0
 */

package org.apache.jena.graph;

import org.eclipse.esmf.aspectmodel.resolver.parser.SmartToken;

/**
 * Because of some internal implementation details in Jena library, it was not possible
 * to extend all node types via one wrapper node; as a workaround each node type must have its own extension.
 */
public class LiteralNode extends Node_Literal {

   private final SmartToken token;

   public LiteralNode( final Node_Literal node, final SmartToken token ) {
      super( node.getLiteral() );
      this.token = token;
   }

   public SmartToken getToken() {
      return token;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy