uk.co.openkappa.bitrules.config.Attribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitrules Show documentation
Show all versions of bitrules Show documentation
Rule based classification with explicit support for ambiguity resolution
package uk.co.openkappa.bitrules.config;
import uk.co.openkappa.bitrules.Rule;
/**
* Effectively a factory for a column of constraints
* @param
*/
public interface Attribute {
/**
* Construct a rule from the attribute
* @return a new rule instance
*/
Rule toRule();
}