
org.dmg.pmml.Rule Maven / Gradle / Ivy
/*
* 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