Package oracle.rules.sdk2.decisiontable
Class DimensionTable
java.lang.Object
oracle.rules.sdk2.dictionary.DictionaryObject
oracle.rules.sdk2.dictionary.DictionaryComponentTable<T>
oracle.rules.sdk2.ruleset.RuleComponentTable<T>
oracle.rules.sdk2.decisiontable.DTComponentTable<Dimension>
oracle.rules.sdk2.decisiontable.DimensionTable
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<Dimension>
,Collection<Dimension>
,List<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:
-
Field Summary
Fields inherited from class oracle.rules.sdk2.dictionary.DictionaryComponentTable
SORT, SORT_ASCEND, SORT_DECEND
-
Method Summary
Modifier and TypeMethodDescriptionadd
(int index) Create a new Dimension and add it at the given indexvoid
Override table mutators to maintain DimensionNodes and DTRulesboolean
Used internally by subclasses.void
clear()
remove all elements in the tableDimensionNode[][]
Get the DimensionNodes in the sheet as an D x R matrix (D rows x R columns, D is #dimensions and R is #rules)void
move
(int fromIndex, int toIndex, boolean replace) Move the DictionaryComponent with the given id from its current location to the location of the second id.remove
(int index) Remove the dimension at given index from the table.boolean
remove the object from this tablevoid
reorder this table according to a list of indexes.void
validate
(List<SDKException> errors, List<SDKWarning> warnings, int modelChangeLowerBound, int ruleChangeLowerBound) Validate each DictionaryObject in the table.Methods inherited from class oracle.rules.sdk2.decisiontable.DTComponentTable
addAll, addAll, parentRuleSheet, removeAll, retainAll, set
Methods inherited from class oracle.rules.sdk2.ruleset.RuleComponentTable
getParent
Methods inherited from class oracle.rules.sdk2.dictionary.DictionaryComponentTable
_clear, _remove, _remove, add, contains, containsAll, copyTo, copyTo, cut, filter, get, getAEReferences, getAllReferences, getByAlias, getByAlias, getByID, getByName, getExprParserReferences, getLast, getMarked, getProtoType, indexOf, initProtoType, isEmpty, isLocked, iterator, lastIndexOf, listIterator, listIterator, mark, move, ordering, paste, removeByAlias, removeByID, removeByName, removeMarked, removeProtoType, size, sort, sort, sort, subList, toArray, toArray, unMark, validate
Methods inherited from class oracle.rules.sdk2.dictionary.DictionaryObject
_clearID, equals, exists, getAEReferenceCount, getCombinedDataModel, getContainedIDs, getContainedIDs, getDataModel, getDictionary, getID, getIndent, getObjectPath, getObjectType, getParentByClass, getParentComponent, getParentComponentTable, getParentObject, getReferences, getRuleSet, getState, getWarnings, hashCode, isModified, setID, validate
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
equals, hashCode, replaceAll, sort, spliterator
-
Method Details
-
add
Create a new Dimension and add it at the given index- Specified by:
add
in classDictionaryComponentTable<Dimension>
- Returns:
- a new Dimension
-
add
Override table mutators to maintain DimensionNodes and DTRules -
add
Description copied from class:DictionaryComponentTable
Used internally by subclasses.- Specified by:
add
in interfaceCollection<Dimension>
- Specified by:
add
in interfaceList<Dimension>
- Overrides:
add
in classDictionaryComponentTable<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 interfaceCollection<Dimension>
- Specified by:
clear
in interfaceList<Dimension>
- Overrides:
clear
in classDictionaryComponentTable<Dimension>
-
remove
Remove the dimension at given index from the table. If all dimensions are removed, so are all DTRules and DTActionNodes. -
remove
remove the object from this table- Specified by:
remove
in interfaceCollection<Dimension>
- Specified by:
remove
in interfaceList<Dimension>
- Overrides:
remove
in classDictionaryComponentTable<Dimension>
-
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 classDictionaryComponentTable<Dimension>
- Parameters:
fromIndex
- the index of the row to movetoIndex
- move row to this locationreplace
- 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 classDictionaryComponentTable<Dimension>
- Parameters:
errors
- validation errorswarnings
- validation warningsmodelChangeLowerBound
- determines what needs to be re-validated based on changes to the dictionaryruleChangeLowerBound
- 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
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 classDictionaryComponentTable<Dimension>
- Parameters:
ordering
- a list of indexes the same size as this list.
-