All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dmg.pmml.SparseArray Maven / Gradle / Ivy

There is a newer version: 1.6.5
Show newest version
/*
 * Copyright (c) 2012 University of Tartu
 */
package org.dmg.pmml;

import java.util.*;

import javax.xml.bind.annotation.*;

@XmlTransient
abstract
public class SparseArray extends PMMLObject {

	abstract
	public Integer getN();

	abstract
	public void setN(Integer n);

	abstract
	public List getIndices();

	abstract
	public List getEntries();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy