FilterValueCollection
Overview
FilterValueCollection is a class in Aspose.Cells FOSS for Java.
Inherits from: Iterable<String>.
Represents the FilterValueCollection component.
This class provides 8 methods for working with FilterValueCollection objects in Java programs.
Available methods include: add, clear, get, getCount, hasNext, iterator, next, removeAt.
All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package.
Properties: count.
Description
FilterValueCollection is a class in the Aspose.Cells FOSS library for Java that exposes 8 methods and 1 property for programmatic use. It extends Iterable<String>, inheriting shared functionality from its parent type.
Core capabilities include: Removes at; clears the current state maintained by this object. These operations enable developers to integrate filtervaluecollection functionality directly into Java applications.
The class also provides the count property (returns the count).
Properties
| Name | Type | Access | Description |
|---|---|---|---|
count | int | Read | Returns the count. |
Methods
| Signature | Description |
|---|---|
getCount() → int | Returns the count. |
get(index: int) → String | Returns the requested item. |
add(value: String) → int | Adds a new item to the current collection. |
removeAt(index: int) | Removes at. |
clear() | Clears the current state maintained by this object. |
iterator() → Iterator<String> | Returns an iterator over the current collection. |
hasNext() → boolean | Returns true if next is present. |
next() → String | Returns the next string element in the iteration |