| java.lang.Object com.hp.hpl.jena.reasoner.FinderUtil
FinderUtil | public class FinderUtil (Code) | | Some simple helper methods used when working with Finders,
particularly to compose them into cascade sequences.
The cascades are designed to cope with null Finders as well.
author: Dave Reynolds version: $Revision: 1.11 $ on $Date: 2008/01/02 12:07:00 $ |
cascade | public static Finder cascade(Finder first, Finder second)(Code) | | Create a continuation object which is a cascade of two
continuation objects.
Parameters: first - the first Graph/Finder to try Parameters: second - the second Graph/Finder to try |
cascade | public static Finder cascade(Finder first, Finder second, Finder third)(Code) | | Create a continuation object which is a cascade of three
continuation objects.
Parameters: first - the first Graph/Finder to try Parameters: second - the second Graph/Finder to try Parameters: third - the third Graph/Finder to try |
cascade | public static Finder cascade(Finder first, Finder second, Finder third, Finder fourth)(Code) | | Create a continuation object which is a cascade of four
continuation objects.
Parameters: first - the first Graph/Finder to try Parameters: second - the second Graph/Finder to try Parameters: third - the third Graph/Finder to try Parameters: fourth - the third Graph/Finder to try |
|
|