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

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

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

import javax.xml.bind.annotation.XmlTransient;

@XmlTransient
abstract
public class Rule extends Entity {

	/**
	 * @throws UnsupportedOperationException If the id attribute is not supported.
	 */
	@Override
	public String getId(){
		throw new UnsupportedOperationException();
	}

	/**
	 * @throws UnsupportedOperationException If the id attribute is not supported.
	 */
	@Override
	public Rule setId(String id){
		throw new UnsupportedOperationException();
	}

	abstract
	public Predicate getPredicate();

	abstract
	public Rule setPredicate(Predicate predicate);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy