Lines Matching refs:ArrayIndexOutOfBoundsException

67      * @throws ArrayIndexOutOfBoundsException
70 public static Object get(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
111 * @throws ArrayIndexOutOfBoundsException
114 public static boolean getBoolean(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
128 * @throws ArrayIndexOutOfBoundsException
131 public static byte getByte(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
145 * @throws ArrayIndexOutOfBoundsException
148 public static char getChar(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
163 * @throws ArrayIndexOutOfBoundsException
166 public static double getDouble(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
193 * @throws ArrayIndexOutOfBoundsException
196 public static float getFloat(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
221 * @throws ArrayIndexOutOfBoundsException
224 public static int getInt(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
275 * @throws ArrayIndexOutOfBoundsException
278 public static long getLong(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
301 * @throws ArrayIndexOutOfBoundsException
304 public static short getShort(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
391 * @throws ArrayIndexOutOfBoundsException
394 public static void set(Object array, int index, Object value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
435 * @throws ArrayIndexOutOfBoundsException
453 * @throws ArrayIndexOutOfBoundsException
456 public static void setByte(Object array, int index, byte value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
481 * @throws ArrayIndexOutOfBoundsException
484 public static void setChar(Object array, int index, char value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
507 * @throws ArrayIndexOutOfBoundsException
510 public static void setDouble(Object array, int index, double value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
525 * @throws ArrayIndexOutOfBoundsException
528 public static void setFloat(Object array, int index, float value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
545 * @throws ArrayIndexOutOfBoundsException
548 public static void setInt(Object array, int index, int value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
569 * @throws ArrayIndexOutOfBoundsException
572 public static void setLong(Object array, int index, long value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
591 * @throws ArrayIndexOutOfBoundsException
594 public static void setShort(Object array, int index, short value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {