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

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

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

import javax.xml.bind.annotation.XmlTransient;

import org.dmg.pmml.Entity;
import org.dmg.pmml.HasPredicate;

@XmlTransient
abstract
public class Rule extends Entity implements HasPredicate {

	/**
	 * @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();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy