BrightSide Workbench Full Report + Source Code
org.turro.entities.graph.IVertexProvider Interface Reference
Inheritance diagram for org.turro.entities.graph.IVertexProvider:

Public Member Functions

Set< EntityEdgegetEdges ()
 
default EntityVertex convert (String root, String id, String name)
 
default EntityVertex convert (String root, Long id, String name)
 
default EntityVertex convert (String root, IContact contact)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 28 of file IVertexProvider.java.

Member Function Documentation

◆ convert() [1/3]

default EntityVertex org.turro.entities.graph.IVertexProvider.convert ( String  root,
IContact  contact 
)

Definition at line 40 of file IVertexProvider.java.

40  {
41  return new EntityVertex(root + "/" + contact.getId(), contact.getName());
42  }
Here is the call graph for this function:

◆ convert() [2/3]

default EntityVertex org.turro.entities.graph.IVertexProvider.convert ( String  root,
Long  id,
String  name 
)

Definition at line 36 of file IVertexProvider.java.

36  {
37  return new EntityVertex(root + "/" + id, name);
38  }

◆ convert() [3/3]

default EntityVertex org.turro.entities.graph.IVertexProvider.convert ( String  root,
String  id,
String  name 
)

Definition at line 32 of file IVertexProvider.java.

32  {
33  return new EntityVertex(root + "/" + id, name);
34  }
Here is the caller graph for this function:

◆ getEdges()

Set<EntityEdge> org.turro.entities.graph.IVertexProvider.getEdges ( )

The documentation for this interface was generated from the following file: