org.dmg.pmml.SparseArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pmml-model-gwt Show documentation
Show all versions of pmml-model-gwt Show documentation
JPMML GWT compatible class model
/*
* Copyright (c) 2012 University of Tartu
*/
package org.dmg.pmml;
import java.util.List;
import javax.xml.bind.annotation.XmlTransient;
@XmlTransient
abstract
public class SparseArray extends PMMLObject {
abstract
public Integer getN();
abstract
public SparseArray setN(Integer n);
abstract
public E getDefaultValue();
abstract
public SparseArray setDefaultValue(E defaultValue);
abstract
public List getIndices();
abstract
public List getEntries();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy