Interface AdditionalMeasureProducer
-
- All Known Implementing Classes:
J48,J48WithNDCs
public interface AdditionalMeasureProducerInterface to something that can produce measures other than those calculated by evaluation modules.- Version:
- $Revision: 1.7 $
- Author:
- Mark Hall (mhall@cs.waikato.ac.nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.EnumerationenumerateMeasures()Returns an enumeration of the measure names.doublegetMeasure(java.lang.String measureName)Returns the value of the named measure
-
-
-
Method Detail
-
enumerateMeasures
java.util.Enumeration enumerateMeasures()
Returns an enumeration of the measure names. Additional measures must follow the naming convention of starting with "measure", eg. double measureBlah()- Returns:
- an enumeration of the measure names
-
getMeasure
double getMeasure(java.lang.String measureName)
Returns the value of the named measure- Parameters:
measureName- the name of the measure to query for its value- Returns:
- the value of the named measure
- Throws:
java.lang.IllegalArgumentException- if the named measure is not supported
-
-