Package org.kie.api.pmml
Class ParameterInfo<T>
- java.lang.Object
-
- org.kie.api.pmml.ParameterInfo<T>
-
public class ParameterInfo<T> extends Object
-
-
Constructor Summary
Constructors Constructor Description ParameterInfo()
ParameterInfo(String correlationId, String name, Class<T> type, T value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getCapitalizedName()
String
getCorrelationId()
String
getName()
Class<T>
getType()
T
getValue()
int
hashCode()
void
setCorrelationId(String correlationId)
void
setName(String name)
void
setType(Class<T> type)
void
setValue(T value)
String
toString()
-
-
-
Method Detail
-
getName
public String getName()
-
getCapitalizedName
public String getCapitalizedName()
-
setName
public void setName(String name)
-
getValue
public T getValue()
-
setValue
public void setValue(T value)
-
getCorrelationId
public String getCorrelationId()
-
setCorrelationId
public void setCorrelationId(String correlationId)
-
-