Packages

p

es.weso.rdf

sgraph

package sgraph

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed trait DotColor extends AnyRef
  2. case class DotNodePreferences(shape: DotShape, style: DotStyle, color: DotColor) extends Product with Serializable
  3. sealed trait DotShape extends AnyRef

    More info: https://graphviz.gitlab.io/_pages/doc/info/shapes.html

  4. sealed trait DotStyle extends AnyRef

    https://graphviz.gitlab.io/_pages/doc/info/attrs.html#d:style

  5. case class Edge(n1: Node, n2: Node, label: String, href: String) extends Product with Serializable
  6. case class Node(id: String, label: String, rdfNode: RDFNode, pm: PrefixMap) extends Product with Serializable
  7. case class RDFDotPreferences(irisPrefs: DotNodePreferences, bnodesPrefs: DotNodePreferences, literalPrefs: DotNodePreferences) extends Product with Serializable
  8. case class SGraph(rdfNodeIdMap: Map[RDFNode, Node], edges: List[Edge]) extends Product with Serializable

    Representation of RDF graphs as simple graphs It is used to serialize RDF graphs to DOT or JSON

Value Members

  1. case object Black extends DotColor with Product with Serializable
  2. case object Blue extends DotColor with Product with Serializable
  3. case object Circle extends DotShape with Product with Serializable
  4. case object Ellipse extends DotShape with Product with Serializable
  5. case object Filled extends DotStyle with Product with Serializable
  6. case object Gray extends DotColor with Product with Serializable
  7. case object Green extends DotColor with Product with Serializable
  8. object RDF2SGraph
  9. object RDFDotPreferences extends Serializable
  10. case object Rectangle extends DotShape with Product with Serializable
  11. case object Red extends DotColor with Product with Serializable
  12. object SGraph extends Serializable
  13. case object Solid extends DotStyle with Product with Serializable
  14. case object Square extends DotShape with Product with Serializable
  15. case object Star extends DotShape with Product with Serializable
  16. case object White extends DotColor with Product with Serializable
  17. case object Yellow extends DotColor with Product with Serializable

Ungrouped