Package com.aspose.tasks
Class ViewCollection
- java.lang.Object
-
- java.util.AbstractCollection<View>
-
- com.aspose.tasks.ViewCollection
-
- All Implemented Interfaces:
Iterable<View>,Collection<View>
public class ViewCollection extends AbstractCollection<View>
Contains a list of
Viewobjects. ExtendsAbstractCollection<View>class.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(View item)Adds the specified item to this collection.voidclear()Removes all items from this collection.booleancontains(View item)Returns true if the specified item is found in this collection; otherwise, false.voidcopyTo(View[] array, int arrayIndex)Copies the elements of this collection to the specified array, starting at the specified array index.ProjectgetParentProject()Gets the parent of the View object.Iterator<View>iterator()Returns an iterator over the elements contained in this collection.booleanremove(View item)Removes the first occurrence of a specific object from this collection.intsize()Gets the number of elements contained in this collection.List<View>toList()Converts a view collection to a list ofViewobjects.-
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
-
-
-
-
Method Detail
-
add
public final boolean add(View item)
Adds the specified item to this collection.
- Specified by:
addin interfaceCollection<View>- Overrides:
addin classAbstractCollection<View>- Parameters:
item- the specified item to add to this collection.- Returns:
- true if the operation was successful.
-
clear
public final void clear()
Removes all items from this collection.
- Specified by:
clearin interfaceCollection<View>- Overrides:
clearin classAbstractCollection<View>
-
contains
public final boolean contains(View item)
Returns true if the specified item is found in this collection; otherwise, false.
- Parameters:
item- the specified item to find.- Returns:
- true if the specified item is found in this collection; otherwise, false.
-
copyTo
public final void copyTo(View[] array, int arrayIndex)
Copies the elements of this collection to the specified array, starting at the specified array index.
- Parameters:
array- the specified one-dimensional array to copy elements toarrayIndex- the zero-based index of the specified array at which copying begins.
-
getParentProject
public final Project getParentProject()
Gets the parent of the View object. Read-only
Project.- Returns:
- the parent of the View object.
-
iterator
public Iterator<View> iterator()
Returns an iterator over the elements contained in this collection.- Specified by:
iteratorin interfaceCollection<View>- Specified by:
iteratorin interfaceIterable<View>- Specified by:
iteratorin classAbstractCollection<View>- Returns:
- collection iterator.
-
remove
public final boolean remove(View item)
Removes the first occurrence of a specific object from this collection.
- Parameters:
item- the specified object to remove.- Returns:
- true if the specified object was successfully removed from this collection; otherwise, false.
-
size
public final int size()
Gets the number of elements contained in this collection.
- Specified by:
sizein interfaceCollection<View>- Specified by:
sizein classAbstractCollection<View>- Returns:
- the number of elements contained in this collection.
-
-