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

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

There is a newer version: 1.6.5
Show newest version
/*
 * Copyright (c) 2022 Villu Ruusmann
 */
package org.dmg.pmml;

import java.util.Arrays;
import java.util.List;

import jakarta.xml.bind.annotation.XmlTransient;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.dmg.pmml.adapters.ScoreDistributionAdapter;

@XmlTransient
@XmlJavaTypeAdapter (
	value = ScoreDistributionAdapter.class
)
abstract
public class ScoreDistribution extends PMMLObject implements HasRecordCount {

	public ComplexScoreDistribution toComplexScoreDistribution(){
		return new ComplexScoreDistribution(this);
	}

	public Object requireValue(){
		throw new UnsupportedOperationException();
	}

	public Object getValue(){
		return null;
	}

	public ScoreDistribution setValue(Object value){
		throw new UnsupportedOperationException();
	}

	public Number requireRecordCount(){
		throw new UnsupportedOperationException();
	}

	@Override
	public Number getRecordCount(){
		return null;
	}

	@Override
	public ScoreDistribution setRecordCount(Number recordCount){
		throw new UnsupportedOperationException();
	}

	public Number getConfidence(){
		return null;
	}

	public ScoreDistribution setConfidence(Number confidence){
		throw new UnsupportedOperationException();
	}

	public Number requireProbability(){
		throw new UnsupportedOperationException();
	}

	public Number getProbability(){
		return null;
	}

	public ScoreDistribution setProbability(Number probability){
		throw new UnsupportedOperationException();
	}

	public boolean hasExtensions(){
		return false;
	}

	public List getExtensions(){
		throw new UnsupportedOperationException();
	}

	public ScoreDistribution addExtensions(Extension... extensions){
		getExtensions().addAll(Arrays.asList(extensions));

		return this;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy