Interface ExportRuleSetComp
-
- All Known Subinterfaces:
ExportRuleSet
public interface ExportRuleSetComp
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<com.redwood.scheduler.api.export.ExportedItem>
getExportedItems()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useExportRuleSet.getExportedItems()
instead.Iterator<ExportRuleItem>
getExportRuleItems()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useExportRuleSet.getExportRuleItems()
instead.Iterator<ExportRule>
getExportRules()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useExportRuleSet.getExportRules()
instead.Iterator<Export>
getExports()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useExportRuleSet.getExports()
instead.
-
-
-
Method Detail
-
getExports
@Deprecated Iterator<Export> getExports()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useExportRuleSet.getExports()
instead.
-
getExportRuleItems
@Deprecated Iterator<ExportRuleItem> getExportRuleItems()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useExportRuleSet.getExportRuleItems()
instead.Get anIterator
over a collection ofExportRuleItems
, 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
. Export rule item, allows a fixed set of objects to be exported.- Returns:
- An
Iterator
over a collection ofExportRuleItem
objects , the collection will be ordered by UniqueId.
-
getExportRules
@Deprecated Iterator<ExportRule> getExportRules()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useExportRuleSet.getExportRules()
instead.Get anIterator
over a collection ofExportRules
, 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 ExportRules that make up the ExportRuleSet.- Returns:
- An
Iterator
over a collection ofExportRule
objects , the collection will be ordered by UniqueId.
-
getExportedItems
@Deprecated Iterator<com.redwood.scheduler.api.export.ExportedItem> getExportedItems()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useExportRuleSet.getExportedItems()
instead.This method returns aRWIterable
with all the items that this ExportRuleSet would export.- Returns:
- Returns an
RWIterable
<ExportedItem
> with all items that should be exported with this exportRuleSet. The items come from the list of items and the rules of this exportRuleSet.
-
-