Interface IGraphDotGraph<S extends IGraphDotStatement>

Type Parameters:
S - Type of the statement the graph may contain.
All Superinterfaces:
IGraphDotElement, Serializable
All Known Implementing Classes:
DirectedGraph, UndirectedGraph

public interface IGraphDotGraph<S extends IGraphDotStatement> extends IGraphDotElement
Base type for directed and undirected graphs.
Since:
8.2.0
Author:
XIMA MEDIA GmbH
  • Method Details

    • getId

      CharSequence getId()
      Returns:
      Optional ID of the graph, never null but may be empty.
    • getStatements

      List<S> getStatements()
      Returns:
      Optional list of statements for the graph, never null but may be empty.
    • getType

      EGraphType getType()
      Returns:
      Whether this graph is a directed or undirected graph.
    • isStrict

      boolean isStrict()
      Returns:
      Whether this graph uses strict mode.