Package org.dmg.pmml.general_regression
Class PCovMatrix
- java.lang.Object
-
- org.dmg.pmml.PMMLObject
-
- org.dmg.pmml.general_regression.PCovMatrix
-
- All Implemented Interfaces:
java.io.Serializable,HasExtensions<PCovMatrix>,HasLocator,Visitable
public class PCovMatrix extends PMMLObject implements HasExtensions<PCovMatrix>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPCovMatrix.Type
-
Constructor Summary
Constructors Constructor Description PCovMatrix()PCovMatrix(java.util.List<PCovCell> pCovCells)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VisitorActionaccept(Visitor visitor)PCovMatrixaddExtensions(Extension... extensions)PCovMatrixaddPCovCells(PCovCell... pCovCells)java.util.List<Extension>getExtensions()java.util.List<PCovCell>getPCovCells()PCovMatrix.TypegetType()booleanhasExtensions()booleanhasPCovCells()java.util.List<PCovCell>requirePCovCells()PCovMatrixsetType(PCovMatrix.Type type)-
Methods inherited from class org.dmg.pmml.PMMLObject
getLocator, getSchemaVersion, getSchemaVersion, hasLocator, setLocator
-
-
-
-
Constructor Detail
-
PCovMatrix
public PCovMatrix()
-
PCovMatrix
public PCovMatrix(java.util.List<PCovCell> pCovCells)
-
-
Method Detail
-
getType
public PCovMatrix.Type getType()
-
setType
public PCovMatrix setType(PCovMatrix.Type type)
-
hasExtensions
public boolean hasExtensions()
- Specified by:
hasExtensionsin interfaceHasExtensions<PCovMatrix>
-
getExtensions
public java.util.List<Extension> getExtensions()
- Specified by:
getExtensionsin interfaceHasExtensions<PCovMatrix>
-
addExtensions
public PCovMatrix addExtensions(Extension... extensions)
- Specified by:
addExtensionsin interfaceHasExtensions<PCovMatrix>
-
hasPCovCells
public boolean hasPCovCells()
-
requirePCovCells
public java.util.List<PCovCell> requirePCovCells()
-
getPCovCells
public java.util.List<PCovCell> getPCovCells()
-
addPCovCells
public PCovMatrix addPCovCells(PCovCell... pCovCells)
-
accept
public VisitorAction accept(Visitor visitor)
-
-