Home  Products  Purchase  Downloads  Demos  Forums  Blogs  Ticket  Wiki  API  Corporate


com.aspose.cells
Class CFValueObjectCollection

java.lang.Object
  extended by com.aspose.cells.CFValueObjectCollection

public class CFValueObjectCollection
extends java.lang.Object

Describes a collection of CFValueObject.


Method Summary
 int add(CFValueObject cfvo)
          Adds a CFValueObject to the collection.
 void clear()
          Removes all of the CFValueObject objects from this collection.
 CFValueObject get(int index)
          Gets the CFValueObject element at the specified index.
 boolean remove(CFValueObject cfvo)
          Removes a CFValueObject object from this collection.
 boolean remove(int index)
          Removes the CFValueObject object at the specified position in this collection.
 int size()
          Gets the number of CFValueObject objects in this collection.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

get

public CFValueObject get(int index)
Gets the CFValueObject element at the specified index.

Parameters:
index - the zero based CFValueObject object index.
Returns:
the element at the specified index.

add

public int add(CFValueObject cfvo)
Adds a CFValueObject to the collection.

Parameters:
cfvo -
Returns:
the zero based CFValueObject object index.

size

public int size()
Gets the number of CFValueObject objects in this collection.


clear

public void clear()
Removes all of the CFValueObject objects from this collection.


remove

public boolean remove(int index)
Removes the CFValueObject object at the specified position in this collection.

Parameters:
index - the zero based index of the CFValueObject object.
Returns:
true if the CFValueObject object exists and be removed.

remove

public boolean remove(CFValueObject cfvo)
Removes a CFValueObject object from this collection.

Parameters:
cfvo - the CFValueObject object to be removed
Returns:
true if the CFValueObject object exists and to be removed.