Package org.dmg.pmml
Class MatCell
- java.lang.Object
-
- org.dmg.pmml.PMMLObject
-
- org.dmg.pmml.MatCell
-
- All Implemented Interfaces:
java.io.Serializable,HasLocator,Visitable
public class MatCell extends PMMLObject
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VisitorActionaccept(Visitor visitor)java.lang.IntegergetCol()java.lang.IntegergetRow()java.lang.ObjectgetValue()java.lang.IntegerrequireCol()java.lang.IntegerrequireRow()MatCellsetCol(java.lang.Integer col)MatCellsetRow(java.lang.Integer row)MatCellsetValue(java.lang.Object value)-
Methods inherited from class org.dmg.pmml.PMMLObject
getLocator, getSchemaVersion, getSchemaVersion, hasLocator, setLocator
-
-
-
-
Method Detail
-
requireRow
public java.lang.Integer requireRow()
-
getRow
public java.lang.Integer getRow()
-
setRow
public MatCell setRow(java.lang.Integer row)
-
requireCol
public java.lang.Integer requireCol()
-
getCol
public java.lang.Integer getCol()
-
setCol
public MatCell setCol(java.lang.Integer col)
-
getValue
public java.lang.Object getValue()
-
setValue
public MatCell setValue(java.lang.Object value)
-
accept
public VisitorAction accept(Visitor visitor)
-
-