Package org.kie.api.pmml
Class AbstractOutput<T>
- java.lang.Object
-
- org.kie.api.pmml.AbstractOutput<T>
-
- All Implemented Interfaces:
PMML4Output<T>
- Direct Known Subclasses:
DoubleFieldOutput
,IntegerFieldOutput
,StringFieldOutput
public abstract class AbstractOutput<T> extends Object implements PMML4Output<T>
-
-
Constructor Summary
Constructors Constructor Description AbstractOutput()
AbstractOutput(String correlationId, String name)
AbstractOutput(String correlationId, String name, String displayValue, Double weight)
AbstractOutput(String correlationId, String segmentationId, String segmentId, String name)
AbstractOutput(String correlationId, String segmentationId, String segmentId, String name, String displayValue, Double weight)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getCorrelationId()
String
getDisplayValue()
String
getName()
String
getSegmentationId()
String
getSegmentId()
Double
getWeight()
int
hashCode()
void
setCorrelationId(String correlationId)
void
setDisplayValue(String displayValue)
void
setName(String name)
void
setSegmentationId(String segmentationId)
void
setSegmentId(String segmentId)
void
setWeight(Double weight)
String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.kie.api.pmml.PMML4Output
getValue, setValue
-
-
-
-
Field Detail
-
weight
protected Double weight
-
-
Method Detail
-
getCorrelationId
public String getCorrelationId()
- Specified by:
getCorrelationId
in interfacePMML4Output<T>
-
setCorrelationId
public void setCorrelationId(String correlationId)
- Specified by:
setCorrelationId
in interfacePMML4Output<T>
-
getSegmentationId
public String getSegmentationId()
- Specified by:
getSegmentationId
in interfacePMML4Output<T>
-
setSegmentationId
public void setSegmentationId(String segmentationId)
- Specified by:
setSegmentationId
in interfacePMML4Output<T>
-
getSegmentId
public String getSegmentId()
- Specified by:
getSegmentId
in interfacePMML4Output<T>
-
setSegmentId
public void setSegmentId(String segmentId)
- Specified by:
setSegmentId
in interfacePMML4Output<T>
-
getName
public String getName()
- Specified by:
getName
in interfacePMML4Output<T>
-
setName
public void setName(String name)
- Specified by:
setName
in interfacePMML4Output<T>
-
getDisplayValue
public String getDisplayValue()
- Specified by:
getDisplayValue
in interfacePMML4Output<T>
-
setDisplayValue
public void setDisplayValue(String displayValue)
- Specified by:
setDisplayValue
in interfacePMML4Output<T>
-
getWeight
public Double getWeight()
- Specified by:
getWeight
in interfacePMML4Output<T>
-
setWeight
public void setWeight(Double weight)
- Specified by:
setWeight
in interfacePMML4Output<T>
-
-