Package oracle.rules.sdk2.dictionary
Class IDTable<T extends DictionaryComponent>
java.lang.Object
oracle.rules.sdk2.dictionary.DictionaryObject
oracle.rules.sdk2.dictionary.IDTable<T>
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<T>
,Collection<T>
,List<T>
An ID table is a List of DictionaryComponent IDs that provides
a List<DictionaryComponent> interface similar to DictionaryComponentTable
but does not contain the DictionaryComponents.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
boolean
addAll
(int index, Collection<? extends T> c) boolean
addAll
(Collection<? extends T> c) void
clear()
boolean
boolean
containsAll
(Collection<?> c) get
(int index) Get DOIDs referenced by this Object and descendants.Get all DOIDs referenced by this Object and descendants.getByAlias
(String alias) Get a DictionaryComponent from this table by its alias.Get a DictionaryComponent from this table by its ID.Get a DictionaryComponent from this table by its name.Get all ExprParsers that are directly or Indirectly referenced by this dictionary Object and its descendantsGet all DOIDs referenced by this Component and IDTable properties, but does not include contained dictionary components.int
boolean
isEmpty()
iterator()
int
Not SupportedlistIterator
(int index) Not Supportedremove
(int index) boolean
boolean
removeAll
(Collection<?> c) removeByAlias
(String alias) Remove the DictionaryComponent with the given alias from the tableremoveByID
(DOID id) Remove the DictionaryComponent with the given id from the tableremoveByName
(String name) Remove the DictionaryComponent with the given name from the tableint
TODO - Ganesh Commented out as this requires further changes in DimensionNode Bump change count when the ID Table is modified to invalidate cachesboolean
retainAll
(Collection<?> c) int
size()
subList
(int fromIndex, int toIndex) Not SupportedObject[]
toArray()
<U> U[]
toArray
(U[] a) void
validate
(List<SDKException> errors, List<SDKWarning> warnings) Validate the entire dictionary object and its decendants.void
validate
(List<SDKException> errors, List<SDKWarning> warnings, int modelChangeLowerBound, int ruleChangeLowerBound) Validate does nothingMethods 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, 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
-
Constructor Details
-
IDTable
-
-
Method Details
-
getByName
Get a DictionaryComponent from this table by its name.- Parameters:
name
- name of component- Returns:
- the component
-
getByID
Get a DictionaryComponent from this table by its ID.- Parameters:
id
- ID of component- Returns:
- the component
-
getByAlias
Get a DictionaryComponent from this table by its alias.- Parameters:
alias
- alias of component- Returns:
- the component
-
removeByID
Remove the DictionaryComponent with the given id from the table- Parameters:
id
- the id returned by DictionaryComponent.getId()- Throws:
DeleteException
-
removeByName
Remove the DictionaryComponent with the given name from the table- Parameters:
name
- the name returned by DictionaryComponent.getName()- Throws:
DeleteException
-
removeByAlias
Remove the DictionaryComponent with the given alias from the table- Parameters:
alias
- the alias returned by DictionaryComponent.getAlias()- Throws:
DeleteException
-
validate
public void validate(List<SDKException> errors, List<SDKWarning> warnings, int modelChangeLowerBound, int ruleChangeLowerBound) Validate does nothing- Overrides:
validate
in classDictionaryObject
- Parameters:
errors
- validation errorswarnings
- validation warningsmodelChangeLowerBound
- 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.
-
validate
Description copied from class:DictionaryObject
Validate the entire dictionary object and its decendants. Not incremental.- Specified by:
validate
in classDictionaryObject
- Parameters:
errors
- a List of error exceptions to append to.warnings
- a List of warning exceptions to append to.- See Also:
-
size
public int size()- Specified by:
size
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
size
in interfaceList<T extends DictionaryComponent>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
isEmpty
in interfaceList<T extends DictionaryComponent>
-
contains
- Specified by:
contains
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
contains
in interfaceList<T extends DictionaryComponent>
-
iterator
- Specified by:
iterator
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
iterator
in interfaceIterable<T extends DictionaryComponent>
- Specified by:
iterator
in interfaceList<T extends DictionaryComponent>
-
toArray
- Specified by:
toArray
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
toArray
in interfaceList<T extends DictionaryComponent>
-
toArray
public <U> U[] toArray(U[] a) - Specified by:
toArray
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
toArray
in interfaceList<T extends DictionaryComponent>
-
add
- Specified by:
add
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
add
in interfaceList<T extends DictionaryComponent>
-
remove
- Specified by:
remove
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
remove
in interfaceList<T extends DictionaryComponent>
-
containsAll
- Specified by:
containsAll
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
containsAll
in interfaceList<T extends DictionaryComponent>
-
addAll
- Specified by:
addAll
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
addAll
in interfaceList<T extends DictionaryComponent>
-
addAll
- Specified by:
addAll
in interfaceList<T extends DictionaryComponent>
-
removeAll
- Specified by:
removeAll
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
removeAll
in interfaceList<T extends DictionaryComponent>
-
retainAll
- Specified by:
retainAll
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
retainAll
in interfaceList<T extends DictionaryComponent>
-
clear
public void clear()- Specified by:
clear
in interfaceCollection<T extends DictionaryComponent>
- Specified by:
clear
in interfaceList<T extends DictionaryComponent>
-
get
- Specified by:
get
in interfaceList<T extends DictionaryComponent>
-
set
- Specified by:
set
in interfaceList<T extends DictionaryComponent>
-
add
- Specified by:
add
in interfaceList<T extends DictionaryComponent>
-
remove
- Specified by:
remove
in interfaceList<T extends DictionaryComponent>
-
indexOf
- Specified by:
indexOf
in interfaceList<T extends DictionaryComponent>
-
lastIndexOf
- Specified by:
lastIndexOf
in interfaceList<T extends DictionaryComponent>
-
listIterator
Not Supported- Specified by:
listIterator
in interfaceList<T extends DictionaryComponent>
- Throws:
UnsupportedOperationException
-
listIterator
Not Supported- Specified by:
listIterator
in interfaceList<T extends DictionaryComponent>
- Throws:
UnsupportedOperationException
-
subList
Not Supported- Specified by:
subList
in interfaceList<T extends DictionaryComponent>
- Throws:
UnsupportedOperationException
-
getReferences
Description copied from class:DictionaryObject
Get all DOIDs referenced by this Component and IDTable properties, but does not include contained dictionary components.- Overrides:
getReferences
in classDictionaryObject
- Returns:
- list of the DOIDs
-
getAEReferences
Description copied from class:DictionaryObject
Get DOIDs referenced by this Object and descendants. By convention, properties of type DOID and DOID[] are not considered. This basically makes this useful for finding DOIDs referenced in IDTables and in Expressions and Actions. Note that a parent contains its children but (usually) does not reference them.- Specified by:
getAEReferences
in classDictionaryObject
- Returns:
- list of the DOIDs
-
getAllReferences
Description copied from class:DictionaryObject
Get all DOIDs referenced by this Object and descendants.- Specified by:
getAllReferences
in classDictionaryObject
- Returns:
- list of the DOIDs
-
getExprParserReferences
Description copied from class:DictionaryObject
Get all ExprParsers that are directly or Indirectly referenced by this dictionary Object and its descendants- Specified by:
getExprParserReferences
in classDictionaryObject
- Returns:
- Collection of Expression Parsers
-
removeNulls
public int removeNulls()TODO - Ganesh Commented out as this requires further changes in DimensionNode Bump change count when the ID Table is modified to invalidate caches
-