Class RuleCommon<T extends RuleCommon>

All Implemented Interfaces:
Serializable, Cloneable, Map<String,Object>, ActionContext, AutoBindingContext, VariableScope
Direct Known Subclasses:
Rule, RuleSheet

public abstract class RuleCommon<T extends RuleCommon> extends RuleBase<T>
Common superclass of Rule and RuleSheet
See Also:
  • Method Details

    • getPropertyNames

      public String[] getPropertyNames()
      Overrides:
      getPropertyNames in class RuleBase<T extends RuleCommon>
      Returns:
      Array of property names available.
    • getStoredPropertyNames

      public String[] getStoredPropertyNames()
      Overrides:
      getStoredPropertyNames in class RuleBase<T extends RuleCommon>
      Returns:
      Array of property names which are persisted in the order in which they appear in the schema.
    • getAdvancedModeProperty

      public SettableProperty<Boolean> getAdvancedModeProperty()
      Get AdvancedMode Property.
      Returns:
      boolean SettableProperty
    • isAdvancedMode

      public boolean isAdvancedMode()
      is advanced mode set?
    • setAdvancedMode

      public void setAdvancedMode(boolean flag)
      set advanced mode.
      Parameters:
      flag - boolean flag
    • getPatternTableProperty

      public TableProperty<Pattern> getPatternTableProperty()
      Get PatternTable Property. The table is empty if advancedMode==false.
      Returns:
      Pattern TableProperty
    • getPatternTable

      public PatternTable getPatternTable()
      table containing the patterns for the rule The table is empty if advancedMode==false.
    • getLogicalProperty

      public SettableProperty<Boolean> getLogicalProperty()
      Get Logical Property.
      Returns:
      boolean SettableProperty
    • isLogical

      public boolean isLogical()
      is the "logical" property set?
      Returns:
      boolean
    • setLogical

      public void setLogical(boolean logical)
      set "logical" property
      Parameters:
      logical - boolean value
    • getPatterns

      public List<Pattern> getPatterns()
      Returns:
      empty list if advancedMode==false. else return all patterns in the rule.
    • getPattern

      public Pattern getPattern(int i)
      Shorthand for getPatternTable().get(i)
      Parameters:
      i - ordinal of pattern to retrieve from PatternTable
      Returns:
      the Pattern
      Throws:
      IndexOutOfBoundsException - if advancedMode==false or i is out of bounds for the pattern table
    • getSimpleTest

      public SimpleTest getSimpleTest(int i)
      Shorthand for getSimpleTestTable().get(i)
      Parameters:
      i - ordinal of test to retrieve from SimpleTestTable
      Returns:
      the SimpleTest
      Throws:
      IndexOutOfBoundsException - if advancedMode==true or i is out of bounds for the simpleTest table
    • RHSRuleVariables

      public List<ScopedVariable> RHSRuleVariables(boolean includeAggregates)
      Return all Rule variables available to the Action of a Rule
      Overrides:
      RHSRuleVariables in class RuleBase<T extends RuleCommon>
    • getRoot

      public FactBinding getRoot()
      Return the first test or pattern, creating if needed
      Specified by:
      getRoot in interface AutoBindingContext
      Overrides:
      getRoot in class RuleBase<T extends RuleCommon>
      Returns:
      FactBinding
    • validate

      public void validate(List<SDKException> errors, List<SDKWarning> warnings)
      Validate and return errors and warnings
      Overrides:
      validate in class DictionaryComponent<T extends RuleCommon>
      Parameters:
      errors - a List of error exceptions to append to.
      warnings - a List of warning exceptions to append to.
      See Also:
    • mustBeAdvancedMode

      @Deprecated public boolean mustBeAdvancedMode()
      Deprecated.
      always false.
      whether this rule or DT must be shown in advanced mode. In advanced mode, patterns must be shown and many actions may be nested.
      Returns:
      whether or not rule or DT must be in advanced mode
    • mustNotBeTreeMode

      public boolean mustNotBeTreeMode()
      Overrides:
      mustNotBeTreeMode in class RuleBase<T extends RuleCommon>
    • put

      public Object put(String key, Object value)
      Description copied from class: DictionaryComponent
      Generic property setter. Throws runtime exceptions for incorrect arguments. Please see the specific bean class for a list of properties, their types, and permissible values.

      A put() with either null key or null value throws a NullPointerException.

      A put() with a key that is not a String throws a ClassCastException

      A put() of a value that is not of the correct type for the key throws a ClassCastException.

      Bean properties which have no set() method are read only, and cannot be modified using the put(). Attempting to do so throws a runtime IllegalArgumentException. PROP_ID, and PROP_*_SELECTED are always read only.

      Specified by:
      put in interface Map<String,Object>
      Overrides:
      put in class DictionaryComponent<T extends RuleCommon>
      Parameters:
      key - the key of the property to set
      value - the value of the named property to set
      Returns:
      the previous value of the property
    • convertPatternTable

      public void convertPatternTable()
      //Bug31863374 Converting Patterns to SimpleTest