This will get an object from the array. This will NOT dereference the COS object. @param index The index into the array to get the object. @return The object at the requested index.
( int index )
| 251 | * @return The object at the requested index. |
| 252 | */ |
| 253 | public COSBase get( int index ) |
| 254 | { |
| 255 | return objects.get( index ); |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Get the value of the array as an integer. |
no outgoing calls