Uses of Class
org.apache.manifoldcf.crawler.jobs.HopCount.Answer
-
Packages that use HopCount.Answer Package Description org.apache.manifoldcf.crawler.jobs -
-
Uses of HopCount.Answer in org.apache.manifoldcf.crawler.jobs
Fields in org.apache.manifoldcf.crawler.jobs declared as HopCount.Answer Modifier and Type Field Description protected HopCount.Answer
HopCount.DocumentNode. bestPossibleAnswer
The best (lowest) possible answer value for this node.protected HopCount.Answer
HopCount.DocumentNode. startingAnswer
The answer, as calculated up to the level of all the completed children, which will not include incomplete child references of this node.protected HopCount.Answer
HopCount.DocumentNode. trialAnswer
The current best answer.Methods in org.apache.manifoldcf.crawler.jobs that return HopCount.Answer Modifier and Type Method Description HopCount.Answer
HopCount.DocumentNode. getBestPossibleAnswer()
Get best possible answerHopCount.Answer
HopCount.DocumentNode. getStartingAnswer()
Get the starting (base) answer.HopCount.Answer
HopCount.DocumentNode. getTrialAnswer()
Get the current best answer.Methods in org.apache.manifoldcf.crawler.jobs with parameters of type HopCount.Answer Modifier and Type Method Description protected boolean[]
HopCount. addToProcessingQueue(java.lang.Long jobID, java.lang.String[] affectedLinkTypes, java.lang.String[] documentIDHashes, HopCount.Answer[] startingAnswers, java.lang.String sourceDocumentIDHash, java.lang.String linkType, int hopcountMethod)
Add documents to the processing queue.void
HopCount.Answer. duplicate(HopCount.Answer other)
Copy the answer value from another answer objectvoid
HopCount.Answer. merge(HopCount.Answer childAnswer, boolean isIncrementingLink, java.lang.String linkType, java.lang.String parentIDHash, java.lang.String childIDHash)
Update the current answer, using a child link's information and answer.void
HopCount.DocumentNode. setBestPossibleAnswer(HopCount.Answer answer)
Set best possible answervoid
HopCount.DocumentNode. setStartingAnswer(HopCount.Answer answer)
Set the starting (base) answer.void
HopCount.DocumentNode. setTrialAnswer(HopCount.Answer answer)
Set the answer for this node.Constructors in org.apache.manifoldcf.crawler.jobs with parameters of type HopCount.Answer Constructor Description Answer(HopCount.Answer other)
-