Package org.kie.api.pmml
Interface PMML4Output<T>
-
- All Known Implementing Classes:
AbstractOutput
,DoubleFieldOutput
,IntegerFieldOutput
,StringFieldOutput
public interface PMML4Output<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCorrelationId()
String
getDisplayValue()
String
getName()
String
getSegmentationId()
String
getSegmentId()
T
getValue()
Double
getWeight()
void
setCorrelationId(String correlationId)
void
setDisplayValue(String displayValue)
void
setName(String name)
void
setSegmentationId(String segmentationId)
void
setSegmentId(String segmentId)
void
setValue(T value)
void
setWeight(Double weight)
-
-
-
Method Detail
-
getCorrelationId
String getCorrelationId()
-
setCorrelationId
void setCorrelationId(String correlationId)
-
getName
String getName()
-
setName
void setName(String name)
-
getDisplayValue
String getDisplayValue()
-
setDisplayValue
void setDisplayValue(String displayValue)
-
getValue
T getValue()
-
setValue
void setValue(T value)
-
getWeight
Double getWeight()
-
setWeight
void setWeight(Double weight)
-
getSegmentationId
String getSegmentationId()
-
setSegmentationId
void setSegmentationId(String segmentationId)
-
getSegmentId
String getSegmentId()
-
setSegmentId
void setSegmentId(String segmentId)
-
-