Package org.kie.pmml.api.models
Class TargetField
- java.lang.Object
-
- org.kie.pmml.api.models.TargetField
-
- All Implemented Interfaces:
Serializable
public class TargetField extends Object implements Serializable
User-friendly representation of a TargetField- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TargetField(List<TargetValue> targetValues, OP_TYPE opType, String field, CAST_INTEGER castInteger, Number min, Number max, Number rescaleConstant, Number rescaleFactor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)CAST_INTEGERgetCastInteger()StringgetField()DoublegetMax()DoublegetMin()StringgetName()OP_TYPEgetOpType()doublegetRescaleConstant()doublegetRescaleFactor()List<TargetValue>getTargetValues()inthashCode()StringtoString()
-
-
-
Constructor Detail
-
TargetField
public TargetField(List<TargetValue> targetValues, OP_TYPE opType, String field, CAST_INTEGER castInteger, Number min, Number max, Number rescaleConstant, Number rescaleFactor)
-
-
Method Detail
-
getName
public String getName()
-
getTargetValues
public List<TargetValue> getTargetValues()
-
getOpType
public OP_TYPE getOpType()
-
getField
public String getField()
-
getCastInteger
public CAST_INTEGER getCastInteger()
-
getMin
public Double getMin()
-
getMax
public Double getMax()
-
getRescaleConstant
public double getRescaleConstant()
-
getRescaleFactor
public double getRescaleFactor()
-
-