Class Preferences

All Implemented Interfaces:
Serializable, Cloneable, Map<String,Object>, UnnamedComponent

public class Preferences extends UnnamedDictionaryComponent<Preferences>
See Also:
  • Field Details

  • Method Details

    • getPropertyNames

      public String[] getPropertyNames()
      Specified by:
      getPropertyNames in interface UnnamedComponent
      Overrides:
      getPropertyNames in class UnnamedDictionaryComponent<Preferences>
      Returns:
      Array of property names available.
    • getStoredPropertyNames

      public String[] getStoredPropertyNames()
      Overrides:
      getStoredPropertyNames in class UnnamedDictionaryComponent<Preferences>
      Returns:
      Array of property names which are persisted in the order in which they appear in the schema.
    • get

      public Object get(Object key)
      Description copied from class: DictionaryComponent
      Generic property getter.

      Please see the specific bean class for a list of properties.

      Specified by:
      get in interface Map<String,Object>
      Overrides:
      get in class UnnamedDictionaryComponent<Preferences>
      Parameters:
      key - a String containing the property name to be fetched.
      Returns:
      the value corresponding to the key: a String, String[], DictionaryComponent, DictionaryComponentTable, etc.
    • 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 UnnamedDictionaryComponent<Preferences>
      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
    • getRuleExecutionAlgorithm

      public String getRuleExecutionAlgorithm()
      Get the Rule Execution Algorithm.
    • setRuleExecutionAlgorithm

      public void setRuleExecutionAlgorithm(String algorithm)
      Set the Rule Execution Algorithm.
    • getRuleExecutionAlgorithmOptions

      public String[] getRuleExecutionAlgorithmOptions()
      Get the Rule Execution Algorithm Options.
      Returns:
      String[]
    • getRuleExecutionAlgorithmProperty

      public TranslatedProperty getRuleExecutionAlgorithmProperty()
      Get the Rule Execution Algorithm Property.
      Returns:
      TranslatedProperty
    • isErrorSuppressionDisallowed

      public boolean isErrorSuppressionDisallowed()
      Is Error Suppression Disallowed ?
      Returns:
      true if error suppression is disallowed, false otherwise
    • setErrorSuppressionDisallowed

      public void setErrorSuppressionDisallowed(boolean value)
      Allow or Disallow Error Suppression. Error suppression can be disallowed only if the execution algorithm is Non-RETE.
      Parameters:
      value - true to disallow, false to allow
    • getErrorSuppressionDisallowedProperty

      public SettableProperty<Boolean> getErrorSuppressionDisallowedProperty()
      Get Dictionary Property for Disallowing Error Suppression
    • getDictionaryLoadingExtension

      public String getDictionaryLoadingExtension()
      Get Dictionary Loading Extension Name
      Returns:
      Extension name if set. "" otherwise
    • setDictionaryLoadingExtension

      public void setDictionaryLoadingExtension(String extensionName)
      Set Dictionary Loading Extension Name
      Parameters:
      extensionName - This name should match the value returned by the implementation of DictionaryExtension.getExtensionName()
    • getDictionaryLoadingExtensionProperty

      public SettableProperty<String> getDictionaryLoadingExtensionProperty()
      Get the Property for Dictionary Loading Extension name
      Returns:
      SettableProperty
    • getVerbalChoiceForm

      public String getVerbalChoiceForm()
      Get the Form of Phrase Suggestions for Verbal Choices. Applies only to Verbal Rules.
    • setVerbalChoiceForm

      public void setVerbalChoiceForm(String form)
      Set the Form of Phrase Suggestions for Verbal Choices. Applies only to Verbal Rules.
    • getVerbalChoiceFormOptions

      public String[] getVerbalChoiceFormOptions()
      Get the Phrase Suggestion Form Options. Applies only to Verbal Rules.
      Returns:
      Phrase Suggestion Form Options
    • getVerbalChoiceFormProperty

      public TranslatedProperty getVerbalChoiceFormProperty()
      Get the Verbal Choice Form Property. Applies only to Verbal Rules.
      Returns:
      TranslatedProperty
    • areAutoSuggestionsRestricted

      public boolean areAutoSuggestionsRestricted()
      Are Auto Suggestions restricted to First order Expressions.Applies only to Verbal Rules. Refer to setRestrictAutoSuggestions(boolean)
      Returns:
      boolean
    • setRestrictAutoSuggestions

      public void setRestrictAutoSuggestions(boolean flag)
      Restrict Auto Suggestions to First Order Expressions. Applies only to Verbal Rules. If set to true, choices used to compute Auto Suggestions would be restricted to First Order Expressions.

      For example: Consider the following dictionary data model 1. Fact type 'Purchase Order' - property 'line' of type 'Line Item' with a Global alias 'Purchase Order Line' - property 'total amount' of type 'double' 2. Fact type 'Line Item' has a property 'amount' of type 'double'. 3. The global qualifier pattern has the default value of '{member} of {fact}' When auto suggestions are NOT restricted, the suggestions would include the following phrases amount of Line Item ... total amount of Purchase Order ... amount of Purchase Order Line ... When auto suggestions are restricted to first order expressions, the suggestions not include the phrase "amount of Purchase Order Line", since this phrase is derived from an extended expression beyond simply the property of 'Purchase Order'

      Enabling this option provides a richer set of suggestions for hierarchical data models.

      Parameters:
      flag - boolean
    • getRestrictAutoSuggestionsProperty

      public SettableProperty<Boolean> getRestrictAutoSuggestionsProperty()
      Get the Dictionary Property to restrict Auto Suggestions Refer to setRestrictAutoSuggestions(boolean)
      Returns:
      SettableProperty
    • includeChainedExpressions

      public boolean includeChainedExpressions()
      Should chained expressions be included in Expression Choices Refer to setIncludeChainedExpressions(boolean)
      Returns:
      boolean
    • setIncludeChainedExpressions

      public void setIncludeChainedExpressions(boolean flag)
      Should chained expressions be included in Expression Choices If false, Choice lists for Expression references in this dictionary would not include any chained expressions.
      Parameters:
      flag - boolean
    • includeChainedExpressionsProperty

      public SettableProperty<Boolean> includeChainedExpressionsProperty()
      Get the Dictionary Property for including Chained expressions Refer to setIncludeChainedExpressions(boolean)
      Returns:
      boolean
    • getRuleExecutionAlgorithmIntValue

      public int getRuleExecutionAlgorithmIntValue()
    • validate

      public void validate(List<SDKException> errors, List<SDKWarning> warnings)
      Description copied from class: DictionaryComponent
      Validate and append errors and warnings.
      Overrides:
      validate in class DictionaryComponent<Preferences>
      Parameters:
      errors - a List of error exceptions to append to.
      warnings - a List of warning exceptions to append to.
      See Also: