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>
,java.lang.Comparable<AnalyzerDecision<Location>>
public final class LocationAnalyzerDecision extends AbstractAnalyzerDecision<Location>
AAnalyzerDecision
containing aLocation
. This is typically added to anIncomingMessageAnalyzerResult
if the contained Location is suiteable for the analyzedIncomingMessage
.- Since:
- 11.15
-
-
Constructor Summary
Constructors Constructor Description LocationAnalyzerDecision(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 Detail
-
LocationAnalyzerDecision
public LocationAnalyzerDecision(Location location, double confidence)
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
public LocationAnalyzerDecision(Location location)
Constructs a LocationAnalyzerDecision for a Location.- Parameters:
location
- the Location which is the "value" of this AnalyzerDecision- Since:
- 11.15
-
-