@faubulous/mentor-rdf-serializers
    Preparing search index...

    Interface Reifier

    RDF 1.2 Reifier - a blank node or named node that reifies a triple.

    Syntax: << subject predicate object >> or << subject predicate object ~ reifierId >>

    interface Reifier {
        equals(other: Term | null | undefined): boolean;
        id: NamedNode<string> | BlankNode;
        termType: "Reifier";
        triple: {
            object: TripleTerm | NamedNode<string> | BlankNode | Literal;
            predicate: NamedNode;
            subject: TripleTerm | NamedNode<string> | BlankNode;
        };
    }
    Index

    Properties

    Methods

    Properties

    id: NamedNode<string> | BlankNode

    The node that is used as the subject of the reifying quad. This can be a blank node or a named node, but not a triple term.

    termType: "Reifier"

    Contains the constant "Reifier".

    triple: {
        object: TripleTerm | NamedNode<string> | BlankNode | Literal;
        predicate: NamedNode;
        subject: TripleTerm | NamedNode<string> | BlankNode;
    }

    The triple that is being reified. The subject and object of this triple can be a triple term, but the predicate must be a named node.

    Methods

    • Compares this reifier with another term for equality.

      Parameters

      • other: Term | null | undefined

        The term to compare with.

      Returns boolean

      true if and only if other has termType "Reifier" and the same id and triple.