ImageGearJava Project > com.accusoft.imagegear.core Package : ImGearMetadataNodeList Class |
The following tables list the members exposed by ImGearMetadataNodeList.
Name | Description | |
---|---|---|
add | Overloaded. Adds a node to the list. | |
addAll | Overloaded. Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator (optional operation). The behavior of this operation is undefined if the specified collection is modified while the operation is in progress. (Note that this will occur if the specified collection is this list, and it's nonempty.) | |
addOrdered | Adds a node to the list. | |
clear | Clears the list. | |
clone | Clones the list. | |
contains | Checks whether or not the list contains the specified node. | |
containsAll | Returns true if this list contains all of the elements of the specified collection. | |
get | Provides access to single node within the node list. | |
indexOf | Returns index of the node. | |
isEmpty | Returns true if this list contains no elements. | |
iterator | Returns an iterator over the elements in this list in proper sequence. | |
lastIndexOf | Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element. More formally, returns the highest index i such that (o==null ? get(i)==null : o.equals(get(i))), or -1 if there is no such index. | |
listIterator | Overloaded. Returns a list iterator over the elements in this list (in proper sequence). | |
lookUp | Overloaded. Searches the node list for a node which Tag is equal to the specified tag ID. | |
lookUpLeaf | Overloaded. This method searches the node list recursively for a leaf, according to the path parameter. Length of the path should correspond to the metadata structure depth, at which the desired node is located.
If a leaf is not present, the method returns null. The method does not search in the subtrees of the node list. | |
recursiveSort | Sorts the list items recursively so that items within each level are sorted. | |
remove | Overloaded. Removes the specified node. | |
removeAll | Removes from this list all of its elements that are contained in the specified collection (optional operation). | |
removeName | Removes the node whose name is equal to the specified string value. | |
removeTag | Removes the node with the specified ID. | |
retainAll | Retains only the elements in this list that are contained in the specified collection (optional operation). In other words, removes from this list all the elements that are not contained in the specified collection. | |
set | Replaces the element at the specified position in this list with the specified element (optional operation). | |
size | Gets the number of elements contained in the List.
| |
sort | Sorts the list items. | |
subList | Returns a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive. (If fromIndex and toIndex are equal, the returned list is empty.) The returned list is backed by this list, so non-structural changes in the returned list are reflected in this list, and vice-versa. The returned list supports all of the optional list operations supported by this list.
This method eliminates the need for explicit range operations (of the sort that commonly exist for arrays). Any operation that expects a list can be used as a range operation by passing a subList view instead of a whole list. For example, the following idiom removes a range of elements from a list: list.subList(from, to).clear();Similar idioms may be constructed for indexOf and lastIndexOf, and all of the algorithms in the Collections class can be applied to a subList. The semantics of the list returned by this method become undefined if the backing list (i.e., this list) is structurally modified in any way other than via the returned list. (Structural modifications are those that change the size of this list, or otherwise perturb it in such a fashion that iterations in progress may yield incorrect results.) | |
toArray | Overloaded. Returns an array containing all of the elements in this list in proper sequence (from first to last element).
The returned array will be "safe" in that no references to it are maintained by this list. (In other words, this method must allocate a new array even if this list is backed by an array). The caller is thus free to modify the returned array. This method acts as bridge between array-based and collection-based APIs. | |
toString | Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.
The getClass().getName() + '@' + Integer.toHexString(hashCode()) |