public abstract class CustomExtractorCollection extends Object implements Iterable
Learn more
| Constructor and Description |
|---|
CustomExtractorCollection() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
addItem(IFieldExtractor extractor)
Adds an extractor to the collection.
|
abstract void |
clear()
Removes all extractors from the collection.
|
abstract boolean |
containsItem(IFieldExtractor item)
Determines whether the collection contains a specific extractor.
|
abstract void |
copyToTArray(IFieldExtractor[] array,
int arrayIndex)
Copies the elements of the collection to an array, starting at a particular array index.
|
abstract boolean |
isReadOnly()
Gets a value indicating whether the collection is read-only.
|
abstract Iterator<IFieldExtractor> |
iterator()
Returns an iterator for this collection.
|
abstract boolean |
removeItem(IFieldExtractor extractor)
Removes an extractor from the collection.
|
abstract int |
size()
Gets the number of extractors contained in the collection.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEach, spliteratorpublic abstract void addItem(IFieldExtractor extractor)
extractor - The extractor to add to the collection.public abstract void clear()
public abstract boolean containsItem(IFieldExtractor item)
item - The extractor to locate in the collection.true if item is found in the collection; otherwise, false.public abstract void copyToTArray(IFieldExtractor[] array, int arrayIndex)
array - The one-dimensional array that is the destination of the elements copied from collection.
The array must have zero-based indexing.arrayIndex - The zero-based index in array at which copying begins.public abstract boolean isReadOnly()
public abstract Iterator<IFieldExtractor> iterator()
public abstract boolean removeItem(IFieldExtractor extractor)
extractor - The extractor to remove from the collection.true if extractor was successfully removed from the collection; otherwise, false.
This method also returns false if extractor is not found in the original collection.public abstract int size()
Copyright © 2026. All rights reserved.