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

MethodDescription
<T>toArray(T[] a)
add(TableField item)
add(int index, TableField element)
addAll(int index, Collection<? extends TableField> c)
addAll(Collection<? extends TableField> c)
clear()
contains(Object o)
containsAll(Collection<?> c)
get(int index)
indexOf(TableField item)Returns index of the specified item in this collection.
indexOf(Object o)
isEmpty()
iterator()
lastIndexOf(Object o)
listIterator()
listIterator(int index)
remove(int index)
remove(Object o)
removeAll(Collection<?> c)
retainAll(Collection<?> c)
set(int index, TableField element)
size()
subList(int fromIndex, int toIndex)
toArray()

<T>toArray(T[] a)

public T[] <T>toArray(T[] a)

Parameters:

ParameterTypeDescription
aT[]

Returns: T[]

add(TableField item)

public boolean add(TableField item)

Parameters:

ParameterTypeDescription
itemTableField

Returns: boolean

add(int index, TableField element)

public final void add(int index, TableField element)

Parameters:

ParameterTypeDescription
indexint
elementTableField

addAll(int index, Collection<? extends TableField> c)

public boolean addAll(int index, Collection<? extends TableField> c)

Parameters:

ParameterTypeDescription
indexint
cjava.util.Collection<? extends com.aspose.tasks.TableField>

Returns: boolean

addAll(Collection<? extends TableField> c)

public boolean addAll(Collection<? extends TableField> c)

Parameters:

ParameterTypeDescription
cjava.util.Collection<? extends com.aspose.tasks.TableField>

Returns: boolean

clear()

public void clear()

contains(Object o)

public boolean contains(Object o)

Parameters:

ParameterTypeDescription
ojava.lang.Object

Returns: boolean

containsAll(Collection<?> c)

public boolean containsAll(Collection<?> c)

Parameters:

ParameterTypeDescription
cjava.util.Collection<?>

Returns: boolean

get(int index)

public TableField get(int index)

Parameters:

ParameterTypeDescription
indexint

Returns: TableField

indexOf(TableField item)

public int indexOf(TableField item)

Returns index of the specified item in this collection.

Parameters:

ParameterTypeDescription
itemTableFieldthe specified item.

Returns: int - index of the item.

indexOf(Object o)

public int indexOf(Object o)

Parameters:

ParameterTypeDescription
ojava.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:

ParameterTypeDescription
ojava.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:

ParameterTypeDescription
indexint

Returns: java.util.ListIterator<com.aspose.tasks.TableField>

remove(int index)

public TableField remove(int index)

Parameters:

ParameterTypeDescription
indexint

Returns: TableField

remove(Object o)

public boolean remove(Object o)

Parameters:

ParameterTypeDescription
ojava.lang.Object

Returns: boolean

removeAll(Collection<?> c)

public boolean removeAll(Collection<?> c)

Parameters:

ParameterTypeDescription
cjava.util.Collection<?>

Returns: boolean

retainAll(Collection<?> c)

public boolean retainAll(Collection<?> c)

Parameters:

ParameterTypeDescription
cjava.util.Collection<?>

Returns: boolean

set(int index, TableField element)

public TableField set(int index, TableField element)

Parameters:

ParameterTypeDescription
indexint
elementTableField

Returns: TableField

size()

public int size()

Returns: int

subList(int fromIndex, int toIndex)

public List<TableField> subList(int fromIndex, int toIndex)

Parameters:

ParameterTypeDescription
fromIndexint
toIndexint

Returns: java.util.List<com.aspose.tasks.TableField>

toArray()

public Object[] toArray()

Returns: java.lang.Object[]