Interface ImportRuleSetComp
-
- All Known Subinterfaces:
ImportRuleSet
public interface ImportRuleSetComp
This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterator<ImportActionParameter>
getImportActionParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useImportRuleSet.getImportActionParameters()
instead.Iterator<ImportAction>
getImportActions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useImportRuleSet.getImportActions()
instead.Iterator<ImportRule>
getImportRules()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useImportRuleSet.getImportRules()
instead.Iterator<ImportRuleSetPartitionRename>
getImportRuleSetPartitionRenames()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useImportRuleSet.getImportRuleSetPartitionRenames()
instead.Iterator<Import>
getImports()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useImportRuleSet.getImports()
instead.
-
-
-
Method Detail
-
getImports
@Deprecated Iterator<Import> getImports()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useImportRuleSet.getImports()
instead.
-
getImportActionParameters
@Deprecated Iterator<ImportActionParameter> getImportActionParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useImportRuleSet.getImportActionParameters()
instead.Get anIterator
over an ordered collection ofImportActionParameters
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Import action parameters.- Returns:
- An
Iterator
over an ordered collection ofImportActionParameter
objects .
-
getImportActions
@Deprecated Iterator<ImportAction> getImportActions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useImportRuleSet.getImportActions()
instead.Get anIterator
over an ordered collection ofImportActions
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Import Action which should be applied during this import.- Returns:
- An
Iterator
over an ordered collection ofImportAction
objects .
-
getImportRules
@Deprecated Iterator<ImportRule> getImportRules()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useImportRuleSet.getImportRules()
instead.Get anIterator
over a collection ofImportRules
, the collection will be ordered by UniqueId. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Set of ImportRules that make up the ImportRuleSet.- Returns:
- An
Iterator
over a collection ofImportRule
objects , the collection will be ordered by UniqueId.
-
getImportRuleSetPartitionRenames
@Deprecated Iterator<ImportRuleSetPartitionRename> getImportRuleSetPartitionRenames()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useImportRuleSet.getImportRuleSetPartitionRenames()
instead.Get anIterator
over a collection ofImportRuleSetPartitionRenames
, the collection will be ordered by ProcessOrder. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Rules that define the renaming of partitions during import.- Returns:
- An
Iterator
over a collection ofImportRuleSetPartitionRename
objects , the collection will be ordered by ProcessOrder.
-
-