Package oracle.rules.sdk2.decisiontable
Class DTActionTable
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<DTAction>
oracle.rules.sdk2.decisiontable.DTActionTable
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<DTAction>
,Collection<DTAction>
,List<DTAction>
An ordered list of DTActions in the decision table.
RuleSheet contains a DTActionTable,
which holds multiple DTActions shared by the rules in the sheet.
- 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 DTAction and add it at the given index Also creates a blank DTActionNode per rule.void
Used internally by subclasses.void
clear()
remove all elements in the tableflatten()
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 DictionaryComponent at the given index from the tableboolean
remove the DictionaryComponent from this tableMethods 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, 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, 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 DTAction and add it at the given index Also creates a blank DTActionNode per rule.- Specified by:
add
in classDictionaryComponentTable<DTAction>
- Returns:
- a new DTAction
-
add
Description copied from class:DictionaryComponentTable
Used internally by subclasses. -
flatten
-
remove
Description copied from class:DictionaryComponentTable
Remove the DictionaryComponent at the given index from the table -
remove
Description copied from class:DictionaryComponentTable
remove the DictionaryComponent from this table- Specified by:
remove
in interfaceCollection<DTAction>
- Specified by:
remove
in interfaceList<DTAction>
- Overrides:
remove
in classDictionaryComponentTable<DTAction>
-
clear
public void clear()Description copied from class:DictionaryComponentTable
remove all elements in the table- Specified by:
clear
in interfaceCollection<DTAction>
- Specified by:
clear
in interfaceList<DTAction>
- Overrides:
clear
in classDictionaryComponentTable<DTAction>
-
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<DTAction>
- 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
-