ApiNode

data class ApiNode(val name: String, val relations: List<String>, val constants: List<String>)(source)

Represents a node of an ApiGraph.

Author

Jan Müller

Constructors

Link copied to clipboard
constructor(name: String, relations: List<String>, constants: List<String>)

Creates an ApiNode with the given parameters.

Properties

Link copied to clipboard

List of constant symbols. Each must start with a lowercase letter.

Link copied to clipboard

The name of the node.

Link copied to clipboard

List of relation symbols. Each must start with an uppercase letter.