Interface Ruleset

All Superinterfaces:
Serializable

public interface Ruleset extends Serializable
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the name of the ruleset.
    Returns a Rule instance for the named rule.
    Returns a map of the rules defined in this ruleset.
  • Method Details

    • getName

      String getName()
      Returns the name of the ruleset.
      Returns:
      the name of the ruleset.
    • getRules

      Map<String,Rule> getRules()
      Returns a map of the rules defined in this ruleset.
      Returns:
      a map of the rules defined in this ruleset.
    • getRule

      Rule getRule(String name)
      Returns a Rule instance for the named rule. If the rule does not exist in this ruleset, null is returned. is returned.
      Returns:
      a Rule instance for the named rule.