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 StringgetCorrelationId()StringgetDisplayValue()StringgetName()StringgetSegmentationId()StringgetSegmentId()TgetValue()DoublegetWeight()voidsetCorrelationId(String correlationId)voidsetDisplayValue(String displayValue)voidsetName(String name)voidsetSegmentationId(String segmentationId)voidsetSegmentId(String segmentId)voidsetValue(T value)voidsetWeight(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)
 
 - 
 
 -