KGTable

scalation.database.table.KGTable
See theKGTable companion class
object KGTable

The KGTable companion object provides factory methods for creating knowledge-graph-tables. Supported domains/data-types are 'D'ouble, 'I'nt, 'L'ong, 'S'tring, and 'T'imeNum.

Attributes

Companion
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
KGTable.type

Members list

Value members

Concrete methods

def apply(name: String, schema: String, domain: String, key: String, parent: KGTable): KGTable

Create a knowledge-graph-table given convenient string specifications.

Create a knowledge-graph-table given convenient string specifications.

Value parameters

domain

the domains/data-types for attributes ('D', 'I', 'L', 'S', 'X', 'T')

key

the attributes forming the primary key

name

the name of the knowledge-graph-table

parent

the parent (super-type) table

schema

the attributes for the knowledge-graph-table

Attributes

def apply(gt: GTable): KGTable

Create a knowledge-graph-table from an existing graph-table.

Create a knowledge-graph-table from an existing graph-table.

Value parameters

gt

the source graph-table

Attributes