SparkseeNet  6.0.2
Public Member Functions | List of all members
com.sparsity.sparksee.gdb.Int32List Class Reference

Sparksee 32-bit signed integer list. More...

Public Member Functions

void Add (int value)
 Adds an 32-bit signed integer at the end of the list.
 
void Clear ()
 Clears the list.
 
 Int32List (System.Collections.Generic.ICollection< int > col)
 Creates a new instance from an integer collection.
 
 Int32List ()
 Constructor.
 
com.sparsity.sparksee.gdb.Int32ListIterator Iterator ()
 Gets a new Int32ListIterator.
 
 Int32List (int[] list)
 Creates a new instance from an integer array.
 
int Count ()
 Number of elements in the list.
 

Detailed Description

Sparksee 32-bit signed integer list.

It stores a 32-bit signed integer list.

Use Int32ListIterator to access all elements into this collection.

Author
Sparsity Technologies http://www.sparsity-technologies.com

Constructor & Destructor Documentation

com.sparsity.sparksee.gdb.Int32List.Int32List ( System.Collections.Generic.ICollection< int >  col)

Creates a new instance from an integer collection.

Parameters
colCollection to initialize the instance.
com.sparsity.sparksee.gdb.Int32List.Int32List ( )

Constructor.

This creates an empty list.

com.sparsity.sparksee.gdb.Int32List.Int32List ( int[]  list)

Creates a new instance from an integer array.

Parameters
listInteger array to initialize the instance.

Member Function Documentation

void com.sparsity.sparksee.gdb.Int32List.Add ( int  value)

Adds an 32-bit signed integer at the end of the list.

Parameters
value[in] The integer.
int com.sparsity.sparksee.gdb.Int32List.Count ( )

Number of elements in the list.

Returns
Number of elements in the list.
com.sparsity.sparksee.gdb.Int32ListIterator com.sparsity.sparksee.gdb.Int32List.Iterator ( )

Gets a new Int32ListIterator.

Returns
Int32ListIterator instance.