Class Variable

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

public class Variable extends ConstrainableComponent<Variable> implements ExpressionContext
global variable: similar to Java "static public" variable. A global variable can be constant or modifiable denoted by the final field. A global variable has a name, a value and an alias. The value could be a general expression such as pi/4 where pi is another constant variable.
See Also:
  • Method Details

    • getExpressionProperty

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

      public Expression getExpression()
      get initial value expression
      Returns:
      Expression
    • getFinalProperty

      public SettableProperty<Boolean> getFinalProperty()
      Get Final Property.
      Returns:
      Boolean SettableProperty
    • isFinal

      public boolean isFinal()
      Whether the variable is final?
      Returns:
      true if it is final
    • setFinal

      public void setFinal(boolean isFinal)
      Set the variable final
      Parameters:
      isFinal - boolean value
    • 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 ConstrainableComponent<Variable>
      Parameters:
      errors - a List of error exceptions to append to.
      warnings - a List of warning exceptions to append to.
      See Also:
    • 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.
    • getPropertyNames

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

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

      public static String[] _getPropertyNames()
    • 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
    • isSystem

      public boolean isSystem()
    • setSystem

      public void setSystem(boolean flag)