Package sklearn2pmml
Class Customization
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<String,Object>
-
- net.razorvine.pickle.objects.ClassDict
-
- org.jpmml.python.PythonObject
-
- sklearn2pmml.Customization
-
- All Implemented Interfaces:
Serializable,Cloneable,Map<String,Object>
public class Customization extends org.jpmml.python.PythonObject- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOMMAND_DELETEstatic StringCOMMAND_INSERTstatic StringCOMMAND_UPDATE
-
Constructor Summary
Constructors Constructor Description Customization()Customization(String module, String name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CustomizationcreateDelete(String xPathExpr)static CustomizationcreateInsert(String xPathExpr, String pmmlElement)static CustomizationcreateUpdate(String xPathExpr, String pmmlElement)StringgetCommand()StringgetOptionalXPathExpr()StringgetPMMLElement()StringgetXPathExpr()CustomizationsetCommand(String command)CustomizationsetPMMLElement(String pmmlElement)CustomizationsetXPathExpr(String xPathExpr)-
Methods inherited from class org.jpmml.python.PythonObject
containsKey, delattr, get, get, getArray, getArray, getArray, getArrayList, getArrayList, getArrayShape, getArrayShape, getattr, getattr, getBoolean, getBooleanArray, getClassName, getDict, getEnum, getEnumList, getIdentifiable, getInteger, getIntegerArray, getList, getList, getListLike, getListLike, getNumber, getNumberArray, getObject, getObjectArray, getObjectList, getOptional, getOptionalBoolean, getOptionalBoolean, getOptionalDict, getOptionalEnum, getOptionalIdentifiable, getOptionalInteger, getOptionalNumber, getOptionalObject, getOptionalScalar, getOptionalString, getOptionalTuple, getPythonModule, getPythonName, getScalar, getString, getStringArray, getStringList, getTuple, getTupleList, hasattr, put, putAll, remove, setattr, setClassName, update
-
Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsValue, entrySet, forEach, getOrDefault, isEmpty, keySet, merge, putIfAbsent, remove, replace, replace, replaceAll, size, values
-
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
-
-
-
-
Field Detail
-
COMMAND_DELETE
public static final String COMMAND_DELETE
- See Also:
- Constant Field Values
-
COMMAND_INSERT
public static final String COMMAND_INSERT
- See Also:
- Constant Field Values
-
COMMAND_UPDATE
public static final String COMMAND_UPDATE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getCommand
public String getCommand()
-
setCommand
public Customization setCommand(String command)
-
getXPathExpr
public String getXPathExpr()
-
getOptionalXPathExpr
public String getOptionalXPathExpr()
-
setXPathExpr
public Customization setXPathExpr(String xPathExpr)
-
getPMMLElement
public String getPMMLElement()
-
setPMMLElement
public Customization setPMMLElement(String pmmlElement)
-
createInsert
public static Customization createInsert(String xPathExpr, String pmmlElement)
-
createUpdate
public static Customization createUpdate(String xPathExpr, String pmmlElement)
-
createDelete
public static Customization createDelete(String xPathExpr)
-
-