Class Fact

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

public class Fact extends TypedComponent<Fact> implements ExpressionContext
See Also:
  • Method Details

    • getPropertyNames

      public String[] getPropertyNames()
      Overrides:
      getPropertyNames in class TypedComponent<Fact>
      Returns:
      Array of property names available.
    • getStoredPropertyNames

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

      public FactType getFactType()
      Get the fact type.
    • getPropertyValueTableProperty

      public TableProperty<PropertyValue> getPropertyValueTableProperty()
      Get PropertyValueTable Property.
      Returns:
      TestData TableProperty
    • getPropertyValueTable

      public PropertyValueTable getPropertyValueTable()
      Get PropertyValueTable.
      Returns:
      PropertyValueTable
    • getExpressionProperty

      public DictionaryProperty<Expression> getExpressionProperty()
      Get Expression Property.
      Returns:
      Expression DictionaryProperty
    • getExpression

      public Expression getExpression()
      Get expression of the fact
      Returns:
      Expression
    • getParameterExpressionProperty

      public DictionaryProperty<Expression> getParameterExpressionProperty()
      Get Param Expression Property.
      Returns:
      Expression DictionaryProperty
    • getParameterExpression

      public Expression getParameterExpression()
      Get Expression for this Fact Parameter
      Returns:
      Expression
    • getParamProperty

      public SettableProperty<Boolean> getParamProperty()
      Get Param Property.
      Returns:
      Boolean SettableProperty
    • isParam

      public boolean isParam()
    • setParam

      public void setParam(boolean flag)
    • getSyncMarkProperty

      public SyncMarkProperty<String> getSyncMarkProperty()
      Get SyncMark Property.
      Returns:
      SyncMarkProperty
    • validate

      public void validate(List<SDKException> errors, List<SDKWarning> warnings, int modelChangeLowerBound, int ruleChangeLowerBound)
      Description copied from class: DictionaryObject
      Validate the RuleDictionary object. Append error and warning exceptions. Errors will cause RuleDictionary.update(java.util.List<oracle.rules.sdk2.exception.SDKWarning>) to throw an exception. A dictionary with warnings but no errors can be persisted.
      Overrides:
      validate in class DictionaryObject
      Parameters:
      errors - a List of error exceptions to append to.
      warnings - a List of warning exceptions to append to.
      modelChangeLowerBound - smallest ModelComponent.CreationUpdateNumber modified in thix tx.
      ruleChangeLowerBound - smallest RuleComponent.CreationUpdateNumber modified in thix tx. Rulesets and rules with UpdateNumber >= modelChangeLowerBound will be revalidated. a value of 0 will force revalidation of all rulesets. A value of Integer.MAX_VALUE will skip validation of all rulesets.
    • 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 TypedComponent<Fact>
      Parameters:
      errors - a List of error exceptions to append to.
      warnings - a List of warning exceptions to append to.
      See Also:
    • getMatchTypeIDs

      public DOID[] getMatchTypeIDs(Expression e)
      Description copied from interface: ExpressionContext
      A child calls this method in the parent to see if the data type is appropriate for the context of the parent. Example, in the expression x == y, the Expression y asks its parent the type of x and the operator used between the two
      Specified by:
      getMatchTypeIDs in interface ExpressionContext
    • getMatchOp

      public String getMatchOp(Expression e)
      Description copied from interface: ExpressionContext
      A child calls this method in the parent to see if the data type is appropriate for the context of the parent. Example, in the expression x == y, the Expression y asks its parent the type of x and the operator used between the two
      Specified by:
      getMatchOp in interface ExpressionContext
    • isValueRequired

      public boolean isValueRequired(Expression e)
      Description copied from interface: ExpressionContext
      A child calls this method in the parent to see if it must have a value != ""
      Specified by:
      isValueRequired in interface ExpressionContext
    • _getRL

      public boolean _getRL(StringBuilder sb, Map<Object,Object> properties)
    • isLeafFact

      public boolean isLeafFact()
      Return true if Fact is a leaf fact. Fact can be consider as leaf fact if FactType belongs to Primitive Or Numeric Or XSData or Enumeration or Collection or current fact is Circular reference.
      Returns:
      boolean
    • clearParam

      public void clearParam()
    • isModifiable

      public boolean isModifiable()
      Overrides:
      isModifiable in class DictionaryComponent<Fact>