public class TimephasedDataCollection extends Object implements Iterable<TimephasedData>
Represents a collection of TimephasedData
objects.
Modifier and Type | Method and Description |
---|---|
void |
add(TimephasedData td)
Adds
TimephasedData instance to this collection object. |
void |
addRange(com.aspose.ms.System.Collections.Generic.IGenericEnumerable<TimephasedData> timephased)
Adds a collection of
TimephasedData instances to this collection object. |
int |
getCount()
Returns the number of objects contained in this
TimephasedDataCollection object. |
Iterator<TimephasedData> |
iterator() |
void |
remove(TimephasedData td)
Removes
TimephasedData instance from this collection object. |
List<TimephasedData> |
toList()
Converts the TimephasedDataCollection object to a list of
TimephasedData objects. |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public void add(TimephasedData td)
Adds TimephasedData
instance to this collection object.
td
- TimephasedData
instance to add.com.aspose.ms.System.ArgumentNullException
- is thrown if parameter value is null.public void addRange(com.aspose.ms.System.Collections.Generic.IGenericEnumerable<TimephasedData> timephased)
Adds a collection of TimephasedData
instances to this collection object.
timephased
- A collection of TimephasedData
objects to add.public int getCount()
Returns the number of objects contained in this TimephasedDataCollection
object.
Read only int
.
public List<TimephasedData> toList()
Converts the TimephasedDataCollection object to a list of TimephasedData
objects.
TimephasedData
objects.public void remove(TimephasedData td)
Removes TimephasedData
instance from this collection object.
td
- TimephasedData
instance to remove.public Iterator<TimephasedData> iterator()
iterator
in interface Iterable<TimephasedData>
Copyright (c) 2008-2015 Aspose Pty Ltd. All Rights Reserved.