Lines Matching defs:index

128      * @param index the index
134 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
138 public static native Object get(Object array, int index)
146 * @param index the index
152 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
157 public static native boolean getBoolean(Object array, int index)
165 * @param index the index
171 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
176 public static native byte getByte(Object array, int index)
184 * @param index the index
190 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
195 public static native char getChar(Object array, int index)
203 * @param index the index
209 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
214 public static native short getShort(Object array, int index)
222 * @param index the index
228 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
233 public static native int getInt(Object array, int index)
241 * @param index the index
247 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
252 public static native long getLong(Object array, int index)
260 * @param index the index
266 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
271 public static native float getFloat(Object array, int index)
279 * @param index the index
285 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
290 public static native double getDouble(Object array, int index)
299 * @param index the index into the array
306 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
310 public static native void set(Object array, int index, Object value)
317 * @param index the index into the array
325 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
330 public static native void setBoolean(Object array, int index, boolean z)
337 * @param index the index into the array
345 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
350 public static native void setByte(Object array, int index, byte b)
357 * @param index the index into the array
365 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
370 public static native void setChar(Object array, int index, char c)
377 * @param index the index into the array
385 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
390 public static native void setShort(Object array, int index, short s)
397 * @param index the index into the array
405 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
410 public static native void setInt(Object array, int index, int i)
417 * @param index the index into the array
425 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
430 public static native void setLong(Object array, int index, long l)
437 * @param index the index into the array
445 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
450 public static native void setFloat(Object array, int index, float f)
457 * @param index the index into the array
465 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
470 public static native void setDouble(Object array, int index, double d)