Package org.dmg.pmml
Class Array
- java.lang.Object
-
- org.dmg.pmml.PMMLObject
-
- org.dmg.pmml.Array
-
- All Implemented Interfaces:
java.io.Serializable,HasLocator,Visitable
- Direct Known Subclasses:
ComplexArray
public class Array extends PMMLObject
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classArray.Type
-
Constructor Summary
Constructors Constructor Description Array()Array(Array.Type type, java.lang.Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VisitorActionaccept(Visitor visitor)java.lang.IntegergetN()Array.TypegetType()java.lang.ObjectgetValue()Array.TyperequireType()ArraysetN(java.lang.Integer n)ArraysetType(Array.Type type)ArraysetValue(java.lang.Object value)-
Methods inherited from class org.dmg.pmml.PMMLObject
getLocator, getSchemaVersion, getSchemaVersion, hasLocator, setLocator
-
-
-
-
Constructor Detail
-
Array
public Array()
-
Array
public Array(Array.Type type, java.lang.Object value)
-
-
Method Detail
-
getN
public java.lang.Integer getN()
-
setN
public Array setN(java.lang.Integer n)
-
requireType
public Array.Type requireType()
-
getType
public Array.Type getType()
-
setType
public Array setType(Array.Type type)
-
getValue
public java.lang.Object getValue()
-
setValue
public Array setValue(java.lang.Object value)
-
accept
public VisitorAction accept(Visitor visitor)
-
-