|
Foxit PDF SDK
|
有符号整数值数组。 更多...
Public 成员函数 | |
| Int32Array () | |
| 构造一个简单对象。 | |
| Int32Array (Int32Array other) | |
| 用另一个数组对象构造。 更多... | |
| boolean | add (int newElement) |
| 在尾部添加元素。可能会增长数组。 更多... | |
| int | find (int data, int iStart) |
| 从指定位置到最后查找元素。 更多... | |
| int | getAt (int nIndex) |
| 此方法检索由索引号指定的元素。 更多... | |
| int | getSize () |
| 获取数组中元素的数量。 更多... | |
| int | getUpperBound () |
| 获取数组中的上界,实际上是最大有效索引。 更多... | |
| boolean | insertAt (int nIndex, int newElement, int nCount) |
| 在指定位置插入一个或多个连续元素。 更多... | |
| boolean | insertAt (int nStartIndex, BasicArray pNewArray) |
| 在指定位置插入一个数组。 更多... | |
| void | removeAll () |
| 清理数组。 更多... | |
| boolean | removeAt (int nIndex, int nCount) |
| 在指定位置移除若干元素。 更多... | |
| boolean | setAt (int nIndex, int newElement) |
| 此方法覆盖由索引号指定的元素。 更多... | |
| boolean | setAtGrow (int nIndex, int newElement) |
| 在指定位置设置元素值。可能会增长数组。 更多... | |
| boolean | setSize (int nNewSize, int nGrowBy) |
| 更改分配的大小和增长量。 更多... | |
有符号整数值数组。
| com.foxit.sdk.pdf.graphics.Int32Array.Int32Array | ( | Int32Array | other | ) |
用另一个数组对象构造。
| [in] | other | 另一个数组对象。 |
| boolean com.foxit.sdk.common.fxcrt.Int32Array.add | ( | int | newElement | ) |
在尾部添加元素。可能会增长数组。
| [in] | newElement | 输入的元素。 |
| int com.foxit.sdk.common.fxcrt.Int32Array.find | ( | int | data, |
| int | iStart | ||
| ) |
从指定位置到最后查找元素。
| [in] | data | 输入的元素。 |
| [in] | iStart | 指定开始查找的起始元素的基于零的索引。 |
| int com.foxit.sdk.common.fxcrt.Int32Array.getAt | ( | int | nIndex | ) |
此方法检索由索引号指定的元素。
| [in] | nIndex | 指定元素的基于零的索引。 |
| int com.foxit.sdk.common.fxcrt.Int32Array.getSize | ( | ) |
获取数组中元素的数量。
| int com.foxit.sdk.common.fxcrt.Int32Array.getUpperBound | ( | ) |
获取数组中的上界,实际上是最大有效索引。
| bool com.foxit.sdk.common.fxcrt.Int32Array.insertAt | ( | int | nIndex, |
| int | newElement, | ||
| int | nCount | ||
| ) |
在指定位置插入一个或多个连续元素。
| [in] | nIndex | 指定数组中的起始索引(从零开始)。 |
| [in] | newElement | 指定要插入的元素值。 |
| [in] | nCount | 指定要插入的元素数量。 |
| bool com.foxit.sdk.common.fxcrt.Int32Array.insertAt | ( | int | nStartIndex, |
| BasicArray | pNewArray | ||
| ) |
在指定位置插入一个数组。
| [in] | nStartIndex | 指定插入位置的起始索引(从零开始)。 |
| [in] | pNewArray | 输入的数组。 |
| void com.foxit.sdk.common.fxcrt.Int32Array.removeAll | ( | ) |
清理数组。
| boolean com.foxit.sdk.common.fxcrt.Int32Array.removeAt | ( | int | nIndex, |
| int | nCount | ||
| ) |
在指定位置移除若干元素。
| [in] | nIndex | 指定数组中的基于零的索引。 |
| [in] | nCount | 指定要移除的元素数量。 |
| boolean com.foxit.sdk.common.fxcrt.Int32Array.setAt | ( | int | nIndex, |
| int | newElement | ||
| ) |
此方法覆盖由索引号指定的元素。
| [in] | nIndex | 指定元素的基于零的索引。 |
| [in] | newElement | 元素。 |
| boolean com.foxit.sdk.common.fxcrt.Int32Array.setAtGrow | ( | int | nIndex, |
| int | newElement | ||
| ) |
在指定位置设置元素值。可能会增长数组。
| [in] | nIndex | 指定数组中元素的基于零的索引。 |
| [in] | newElement | 输入的元素。 |
| boolean com.foxit.sdk.common.fxcrt.Int32Array.setSize | ( | int | nNewSize, |
| int | nGrowBy | ||
| ) |
更改分配的大小和增长量。
| [in] | nNewSize | 期望的新大小(以元素为单位)。 |
| [in] | nGrowBy | 期望的增长量(以元素为单位)。这可以为-1表示增长量不变。 |