Class DimensionTable

All Implemented Interfaces:
Serializable, Cloneable, Iterable<Dimension>, Collection<Dimension>, List<Dimension>

public class DimensionTable extends DTComponentTable<Dimension>
An ordered list of Dimensions in the decision table. RuleSheet contains a DimensionTable, which holds multiple Dimensions shared by all the DTRules in the sheet. Dimensions may be added, removed, and moved. No other table mutations are supported.
See Also:
  • Method Details

    • add

      public Dimension add(int index)
      Create a new Dimension and add it at the given index
      Specified by:
      add in class DictionaryComponentTable<Dimension>
      Returns:
      a new Dimension
    • add

      public void add(int index, Dimension dim)
      Override table mutators to maintain DimensionNodes and DTRules
      Specified by:
      add in interface List<Dimension>
      Overrides:
      add in class DictionaryComponentTable<Dimension>
      Parameters:
      index - at which to place the new row.
      dim - to be added, must be of correct type for table.
    • add

      public boolean add(Dimension dim)
      Description copied from class: DictionaryComponentTable
      Used internally by subclasses.
      Specified by:
      add in interface Collection<Dimension>
      Specified by:
      add in interface List<Dimension>
      Overrides:
      add in class DictionaryComponentTable<Dimension>
      Parameters:
      dim - component to be added, must be of correct type for table.
    • clear

      public void clear()
      Description copied from class: DictionaryComponentTable
      remove all elements in the table
      Specified by:
      clear in interface Collection<Dimension>
      Specified by:
      clear in interface List<Dimension>
      Overrides:
      clear in class DictionaryComponentTable<Dimension>
    • remove

      public Dimension remove(int index)
      Remove the dimension at given index from the table. If all dimensions are removed, so are all DTRules and DTActionNodes.
      Specified by:
      remove in interface List<Dimension>
      Overrides:
      remove in class DictionaryComponentTable<Dimension>
      Parameters:
      index -
      Returns:
      the Dimension removed
    • remove

      public boolean remove(Object o)
      remove the object from this table
      Specified by:
      remove in interface Collection<Dimension>
      Specified by:
      remove in interface List<Dimension>
      Overrides:
      remove in class DictionaryComponentTable<Dimension>
    • getNodeMatrix

      public DimensionNode[][] getNodeMatrix()
      Get the DimensionNodes in the sheet as an D x R matrix (D rows x R columns, D is #dimensions and R is #rules)
      Returns:
      matrix
    • move

      public void move(int fromIndex, int toIndex, boolean replace)
      Description copied from class: DictionaryComponentTable
      Move the DictionaryComponent with the given id from its current location to the location of the second id. Shift the row currently at that location up, or replace it.
      Overrides:
      move in class DictionaryComponentTable<Dimension>
      Parameters:
      fromIndex - the index of the row to move
      toIndex - move row to this location
      replace - if true, replace existing row at toIndex, if false move existing row to next higher index
    • validate

      public void validate(List<SDKException> errors, List<SDKWarning> warnings, int modelChangeLowerBound, int ruleChangeLowerBound)
      Description copied from class: DictionaryComponentTable
      Validate each DictionaryObject in the table.
      Overrides:
      validate in class DictionaryComponentTable<Dimension>
      Parameters:
      errors - validation errors
      warnings - validation warnings
      modelChangeLowerBound - determines what needs to be re-validated based on changes to the dictionary
      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.
    • reorder

      public void reorder(List<Integer> ordering)
      Description copied from class: DictionaryComponentTable
      reorder this table according to a list of indexes. e.g. to reverse a list of 3 elements, use ordering (2,1,0).
      Overrides:
      reorder in class DictionaryComponentTable<Dimension>
      Parameters:
      ordering - a list of indexes the same size as this list.