FOM Reference > Application > Arrays > fIntArray interface
  
fIntArray interface
A collection of integer values.
length attribute
Returns the number of elements in this array.
length
Access
read-only
Returns
unsigned int
item method
Return the item stored at the given index.
itemindex
Parameters
unsigned intindex
The index of the item to be returned.
Returns
int. The item stored at the given index.
namedItem method
Return the value with the given name.
namedItemname
Parameters
Stringname
The name of the desired item.
Returns
int. The value stored under the given name.
readResolve method
Return the object corresponding to the given serialized representation.
readResolveobj
Parameters
Objectobj
The serialized representation.
Returns
fIntArray. The object corresponding to the serialized representation.
setItem method
Set the item stored at the given index.
setItemindexvalue
Parameters
unsigned intindex
The index of the item to be set.
intvalue
The value to be stored at the given index.
Returns
void. This method does not have a return value.
setNamedItem method
Set the item stored under the given name.
setNamedItemnamevalue
Parameters
Stringname
The name of the item to be set.
intvalue
The value to be stored under the given name.
Returns
void. This method does not have a return value.