Class MatchWrapper<X,T,D extends Match<X,T>>

java.lang.Object
org.apache.jena.rdfs.engine.MatchWrapper<X,T,D>
All Implemented Interfaces:
Match<X,T>

public class MatchWrapper<X,T,D extends Match<X,T>> extends Object implements Match<X,T>
  • Constructor Details

    • MatchWrapper

      public MatchWrapper(D delegate)
  • Method Details

    • getDelegate

      public D getDelegate()
    • match

      public Stream<T> match(X s, X p, X o)
      Specified by:
      match in interface Match<X,T>
    • getMapper

      public MapperX<X,T> getMapper()
      Description copied from interface: Match
      The mapper for reuse with wrappers. Note that this indirectly ties the Match interface to the Node realm: One can use the mapper to obtain X for e.g. RDF.Nodes.type.
      Specified by:
      getMapper in interface Match<X,T>