|
Foxit PDF SDK
|
An array of unsigned integer values.
More...
Public Member Functions | |
| boolean | add (long newElement) |
| Add an element at the tail. Potentially growing the array. More... | |
| int | find (long data, int iStart) |
| Find an element from specified position to last. More... | |
| long | getAt (int nIndex) |
| This method retrieves an element specified by an index number. More... | |
| int | getSize () |
| Get the number of elements in the array. More... | |
| int | getUpperBound () |
| Get the upper bound in the array, actually the maximum valid index. More... | |
| void | removeAll () |
| Clean up the array. More... | |
| boolean | removeAt (int nIndex, int nCount) |
| Remove a number of elements at specified position. More... | |
| boolean | setAt (int nIndex, long newElement) |
| This method overwrites an element specified by an index number. More... | |
| boolean | setAtGrow (int nIndex, long newElement) |
| Set an element value at specified position. Potentially growing the array. More... | |
| boolean | setSize (int nNewSize, int nGrowBy) |
| Change the allocated size and the grow amount. More... | |
An array of unsigned integer values.
| boolean com.foxit.sdk.common.fxcrt.UInt32Array.add | ( | long | newElement | ) |
Add an element at the tail. Potentially growing the array.
| [in] | newElement | The input element. |
| int com.foxit.sdk.common.fxcrt.UInt32Array.find | ( | long | data, |
| int | iStart | ||
| ) |
Find an element from specified position to last.
| [in] | data | The input element. |
| [in] | iStart | Specifies the zero-based index of start element to find. |
| long com.foxit.sdk.common.fxcrt.UInt32Array.getAt | ( | int | nIndex | ) |
This method retrieves an element specified by an index number.
| [in] | nIndex | Specifies the zero-based index of the element. |
| int com.foxit.sdk.common.fxcrt.UInt32Array.getSize | ( | ) |
Get the number of elements in the array.
| int com.foxit.sdk.common.fxcrt.UInt32Array.getUpperBound | ( | ) |
Get the upper bound in the array, actually the maximum valid index.
| void com.foxit.sdk.common.fxcrt.UInt32Array.removeAll | ( | ) |
Clean up the array.
| boolean com.foxit.sdk.common.fxcrt.UInt32Array.removeAt | ( | int | nIndex, |
| int | nCount | ||
| ) |
Remove a number of elements at specified position.
| [in] | nIndex | Specifies the zero-based index in the array. |
| [in] | nCount | Specifies the count of element to remove. |
| boolean com.foxit.sdk.common.fxcrt.UInt32Array.setAt | ( | int | nIndex, |
| long | newElement | ||
| ) |
This method overwrites an element specified by an index number.
| [in] | nIndex | Specifies the zero-based index of the element. |
| [in] | newElement | An element. |
| boolean com.foxit.sdk.common.fxcrt.UInt32Array.setAtGrow | ( | int | nIndex, |
| long | newElement | ||
| ) |
Set an element value at specified position. Potentially growing the array.
| [in] | nIndex | Specifies the zero-based index of element in the array. |
| [in] | newElement | The input element. |
| boolean com.foxit.sdk.common.fxcrt.UInt32Array.setSize | ( | int | nNewSize, |
| int | nGrowBy | ||
| ) |
Change the allocated size and the grow amount.
| [in] | nNewSize | The new size in elements expected. |
| [in] | nGrowBy | The grow amount in elements expected. This can be -1 for the grow amount unchanged. |