Package oracle.rules.sdk2.decisiontable
Class DimensionNodeTable
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<DimensionNode>
oracle.rules.sdk2.decisiontable.DimensionNodeTable
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<DimensionNode>
,Collection<DimensionNode>
,List<DimensionNode>
A list of DimensionNodes in the same Dimension.
Dimension contains a DimensionNodeTable,
which holds all DimensionNodes in that dimension.
The DimensionNodeTable for the last dimension has the same number of nodes
as there are rules on the sheet. Because DimensionNodes form a tree, often the
DimensionNodeTable for dimension i has fewer nodes than the table for dimension i+1.
The DimensionNodes, DimensionNodeTables, and the DimensionNode tree are managed
automatically when Dimensions are added, removed, and swapped,
and when DTRules are added, removed, and swapped, and when DimensionNodes are
split and merged.
User modification using List mutators is prohibited. Users should be able to
accomplish their tasks using add and remove on dimension tables and DTRule tables, and
special methods like node split and merge.
- 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 DimensionNode and add it at the given indexMethods 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, add, add, clear, 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, move, ordering, paste, remove, remove, removeByAlias, removeByID, removeByName, removeMarked, removeProtoType, reorder, size, sort, sort, sort, subList, toArray, toArray, unMark, validate, 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 DimensionNode and add it at the given index- Specified by:
add
in classDictionaryComponentTable<DimensionNode>
- Returns:
- a new DimensionNode
-