rdflib
    Preparing search index...

    Class NamedNode

    A named (IRI) RDF node

    Hierarchy (View Summary)

    Implements

    • NamedNode
    Index

    Constructors

    Properties

    classOrder: number = ClassOrder.NamedNode

    The class order for this node

    termType: "NamedNode" = NamedNodeTermType

    The type of node

    value: string

    The node's value

    toJS: (
        term: any,
    ) =>
        | string
        | boolean
        | object
        | Number
        | Date
        | (string | boolean | object | Number | Date)[]

    Accessors

    Methods

    • Compares whether the two nodes are equal

      Parameters

      • other: Term | null | undefined

        The other node

      Returns boolean

    • Creates the substituted node for this one, according to the specified bindings

      Type Parameters

      Parameters

      • bindings: Bindings

        Bindings of identifiers to nodes

      Returns T

    • Creates a named node from the specified input value

      Parameters

      • value: any

        An input value

      Returns any