TableFieldCollection
Inheritance: java.lang.Object
All Implemented Interfaces: java.util.List
public class TableFieldCollection implements List<TableField>
Contains a list of TableField objects. Implements IList<TableField> interface.
Methods
<T>toArray(T[] a)
public T[] <T>toArray(T[] a)
Parameters:
Parameter | Type | Description |
---|---|---|
a | T[] |
Returns: T[]
add(TableField item)
public boolean add(TableField item)
Parameters:
Parameter | Type | Description |
---|---|---|
item | TableField |
Returns: boolean
add(int index, TableField element)
public final void add(int index, TableField element)
Parameters:
Parameter | Type | Description |
---|---|---|
index | int | |
element | TableField |
addAll(int index, Collection<? extends TableField> c)
public boolean addAll(int index, Collection<? extends TableField> c)
Parameters:
Parameter | Type | Description |
---|---|---|
index | int | |
c | java.util.Collection<? extends com.aspose.tasks.TableField> |
Returns: boolean
addAll(Collection<? extends TableField> c)
public boolean addAll(Collection<? extends TableField> c)
Parameters:
Parameter | Type | Description |
---|---|---|
c | java.util.Collection<? extends com.aspose.tasks.TableField> |
Returns: boolean
clear()
public void clear()
contains(Object o)
public boolean contains(Object o)
Parameters:
Parameter | Type | Description |
---|---|---|
o | java.lang.Object |
Returns: boolean
containsAll(Collection<?> c)
public boolean containsAll(Collection<?> c)
Parameters:
Parameter | Type | Description |
---|---|---|
c | java.util.Collection<?> |
Returns: boolean
get(int index)
public TableField get(int index)
Parameters:
Parameter | Type | Description |
---|---|---|
index | int |
Returns: TableField
indexOf(TableField item)
public int indexOf(TableField item)
Returns index of the specified item in this collection.
Parameters:
Parameter | Type | Description |
---|---|---|
item | TableField | the specified item. |
Returns: int - index of the item.
indexOf(Object o)
public int indexOf(Object o)
Parameters:
Parameter | Type | Description |
---|---|---|
o | java.lang.Object |
Returns: int
isEmpty()
public boolean isEmpty()
Returns: boolean
iterator()
public Iterator<TableField> iterator()
Returns: java.util.Iterator<com.aspose.tasks.TableField>
lastIndexOf(Object o)
public int lastIndexOf(Object o)
Parameters:
Parameter | Type | Description |
---|---|---|
o | java.lang.Object |
Returns: int
listIterator()
public ListIterator<TableField> listIterator()
Returns: java.util.ListIterator<com.aspose.tasks.TableField>
listIterator(int index)
public ListIterator<TableField> listIterator(int index)
Parameters:
Parameter | Type | Description |
---|---|---|
index | int |
Returns: java.util.ListIterator<com.aspose.tasks.TableField>
remove(int index)
public TableField remove(int index)
Parameters:
Parameter | Type | Description |
---|---|---|
index | int |
Returns: TableField
remove(Object o)
public boolean remove(Object o)
Parameters:
Parameter | Type | Description |
---|---|---|
o | java.lang.Object |
Returns: boolean
removeAll(Collection<?> c)
public boolean removeAll(Collection<?> c)
Parameters:
Parameter | Type | Description |
---|---|---|
c | java.util.Collection<?> |
Returns: boolean
retainAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
Parameters:
Parameter | Type | Description |
---|---|---|
c | java.util.Collection<?> |
Returns: boolean
set(int index, TableField element)
public TableField set(int index, TableField element)
Parameters:
Parameter | Type | Description |
---|---|---|
index | int | |
element | TableField |
Returns: TableField
size()
public int size()
Returns: int
subList(int fromIndex, int toIndex)
public List<TableField> subList(int fromIndex, int toIndex)
Parameters:
Parameter | Type | Description |
---|---|---|
fromIndex | int | |
toIndex | int |
Returns: java.util.List<com.aspose.tasks.TableField>
toArray()
public Object[] toArray()
Returns: java.lang.Object[]