Class LocationAnalyzerDecision
java.lang.Object
com.novomind.ecom.api.imail.core.result.decision.AbstractAnalyzerDecision<Location>
com.novomind.ecom.api.imail.core.result.decision.LocationAnalyzerDecision
- All Implemented Interfaces:
AnalyzerDecision<Location>
,Comparable<AnalyzerDecision<Location>>
A
AnalyzerDecision
containing a Location
.
This is typically added to an IncomingMessageAnalyzerResult
if the contained Location is suiteable for the analyzed IncomingMessage
.- Since:
- 11.15
-
Constructor Summary
ConstructorsConstructorDescriptionLocationAnalyzerDecision
(Location location) Constructs a LocationAnalyzerDecision for a Location.LocationAnalyzerDecision
(Location location, double confidence) Constructs a LocationAnalyzerDecision for a Location 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 Details
-
LocationAnalyzerDecision
Constructs a LocationAnalyzerDecision for a Location with a confidence value.- Parameters:
location
- the Location which is the "value" of this AnalyzerDecisionconfidence
- the confidence value ranging from 0 to 100- Since:
- 11.15
-
LocationAnalyzerDecision
Constructs a LocationAnalyzerDecision for a Location.- Parameters:
location
- the Location which is the "value" of this AnalyzerDecision- Since:
- 11.15
-