@dokieli/web-access-control - v1.0.0
    Preparing search index...

    Interface Quad

    An RDF quad, containing the subject, predicate, object and graph terms.

    interface Quad {
        graph: Quad_Graph;
        object: Quad_Object;
        predicate: Quad_Predicate;
        subject: Quad_Subject;
        termType: "Quad";
        value: "";
        equals(other: Term | null | undefined): boolean;
    }

    Hierarchy

    • BaseQuad
      • Quad
    Index
    graph: Quad_Graph

    The named graph.

    Quad_Graph

    object: Quad_Object

    The object.

    Quad_Object

    predicate: Quad_Predicate

    The predicate.

    Quad_Predicate

    subject: Quad_Subject

    The subject.

    Quad_Subject

    termType: "Quad"

    Contains the constant "Quad".

    value: ""

    Contains an empty string as constant value.

    • Parameters

      • other: Term | null | undefined

        The term to compare with.

      Returns boolean

      True if and only if the argument is a) of the same type b) has all components equal.