Package de.xima.fc.common.graphdot
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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CharSequence
getId()
List<S>
getStatements()
EGraphType
getType()
boolean
isStrict()
-
Methods inherited from interface de.xima.fc.common.graphdot.IGraphDotElement
toGraphDotString, write
-
-
-
-
Method Detail
-
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.
-
-