public abstract class PivotFieldBaseCollection extends Object implements Iterable<PivotField>
PivotField
s.Modifier and Type | Method and Description |
---|---|
boolean |
contains(PivotField item)
Determines whether the
PivotField is contained in the collection. |
PivotField |
get(int index)
Gets the
PivotField at the specified index. |
PivotField |
get(String fieldName)
Gets the
PivotField with the specified name. |
int |
indexOf(PivotField item)
Searches for the specified
PivotField and returns the zero-based index of the first occurrence within the entire collection. |
Iterator<PivotField> |
iterator()
Returns an iterator for the collection.
|
int |
size()
Gets the number of
PivotField s contained in the collection. |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public final boolean contains(PivotField item)
PivotField
is contained in the collection.item
- The PivotField
to locate in the collection.true
if PivotField
is contained in the collection; otherwise, false
.public final PivotField get(int index)
PivotField
at the specified index.index
- The zero-based index of the PivotField
.PivotField
at the specified index.public final PivotField get(String fieldName)
PivotField
with the specified name.fieldName
- The name of the PivotField
.PivotField
with the specified name.public final int indexOf(PivotField item)
PivotField
and returns the zero-based index of the first occurrence within the entire collection.item
- The PivotField
to locate in the collection.PivotField
within the entire collection, if found; otherwise, –1.public final Iterator<PivotField> iterator()
iterator
in interface Iterable<PivotField>
public final int size()
PivotField
s contained in the collection.PivotField
s contained in the collection.© GemBox Ltd. — All rights reserved.