org.apache.lucene.classification
Class ClassificationResult<T>

java.lang.Object
  extended by org.apache.lucene.classification.ClassificationResult<T>

public class ClassificationResult<T>
extends Object

The result of a call to Classifier.assignClass(String) holding an assigned class of type T and a score.

WARNING: This API is experimental and might change in incompatible ways in the next release.

Constructor Summary
ClassificationResult(T assignedClass, double score)
          Constructor
 
Method Summary
 T getAssignedClass()
          retrieve the result class
 double getScore()
          retrieve the result score
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ClassificationResult

public ClassificationResult(T assignedClass,
                            double score)
Constructor

Parameters:
assignedClass - the class T assigned by a Classifier
score - the score for the assignedClass as a double
Method Detail

getAssignedClass

public T getAssignedClass()
retrieve the result class

Returns:
a T representing an assigned class

getScore

public double getScore()
retrieve the result score

Returns:
a double representing a result score


Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.