|
SparkseeNet
6.0.2
|
String list. More...
Public Member Functions | |
| void | Clear () |
| Clears the list. | |
| StringList () | |
| Constructor. | |
| StringList (string[] list) | |
| Creates a new instance from an string array. | |
| StringList (System.Collections.Generic.ICollection< string > col) | |
| Creates a new instance from an string collection. | |
| com.sparsity.sparksee.gdb.StringListIterator | Iterator () |
| Gets a new StringListIterator. | |
| int | Count () |
| Number of elements in the list. | |
| void | Add (System.String str) |
| Adds a String at the end of the list. | |
| StringList (System.String[] v) | |
| Constructor. | |
String list.
It stores a String (unicode) list.
Use StringListIterator to access all elements into this collection.
| com.sparsity.sparksee.gdb.StringList.StringList | ( | ) |
Constructor.
This creates an empty list.
| com.sparsity.sparksee.gdb.StringList.StringList | ( | string[] | list | ) |
Creates a new instance from an string array.
| list | String array to initialize the instance. |
| com.sparsity.sparksee.gdb.StringList.StringList | ( | System.Collections.Generic.ICollection< string > | col | ) |
Creates a new instance from an string collection.
| col | Collection to initialize the instance. |
| com.sparsity.sparksee.gdb.StringList.StringList | ( | System.String[] | v | ) |
Constructor.
| v | [in] Vector. |
| void com.sparsity.sparksee.gdb.StringList.Add | ( | System.String | str | ) |
Adds a String at the end of the list.
| str | [in] String. |
| int com.sparsity.sparksee.gdb.StringList.Count | ( | ) |
Number of elements in the list.
| com.sparsity.sparksee.gdb.StringListIterator com.sparsity.sparksee.gdb.StringList.Iterator | ( | ) |
Gets a new StringListIterator.
1.8.2