Class ContactAnalyzerDecision
- java.lang.Object
-
- com.novomind.ecom.api.imail.core.result.decision.AbstractAnalyzerDecision<Contact>
-
- com.novomind.ecom.api.imail.core.result.decision.ContactAnalyzerDecision
-
- All Implemented Interfaces:
AnalyzerDecision<Contact>
,java.lang.Comparable<AnalyzerDecision<Contact>>
public class ContactAnalyzerDecision extends AbstractAnalyzerDecision<Contact>
-
-
Constructor Summary
Constructors Constructor Description ContactAnalyzerDecision(Contact contact)
Constructs a ContactAnalyzerDecision for a Contact.ContactAnalyzerDecision(Contact contact, double confidence)
Constructs a ContactAnalyzerDecision for a Contact with a confidence value.
-
Method Summary
-
Methods inherited from class com.novomind.ecom.api.imail.core.result.decision.AbstractAnalyzerDecision
canEquals, equals, get, getConfidence, hashCode, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.novomind.ecom.api.imail.core.result.decision.AnalyzerDecision
compareTo
-
-
-
-
Constructor Detail
-
ContactAnalyzerDecision
public ContactAnalyzerDecision(Contact contact, double confidence)
Constructs a ContactAnalyzerDecision for a Contact with a confidence value.- Parameters:
contact
- the Contact which is the "value" of this AnalyzerDecisionconfidence
- the confidence value ranging from 0 to 100- Since:
- 12.41
-
ContactAnalyzerDecision
public ContactAnalyzerDecision(Contact contact)
Constructs a ContactAnalyzerDecision for a Contact.- Parameters:
contact
- the Contact which is the "value" of this AnalyzerDecision- Since:
- 12.41
-
-