Inserts the specified element at the specified position in the int-type-value array. : Array Insert Remove « Collections Data Structure « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Collections Data Structure » Array Insert RemoveScreenshots 
Inserts the specified element at the specified position in the int-type-value array.
   
/*   Copyright 2004 The Apache Software Foundation
 *
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *  limitations under the License.
 */


import java.lang.reflect.Array;


/**
 * <p>Operations on arrays, primitive arrays (like <code>int[]</code>) and
 * primitive wrapper arrays (like <code>Integer[]</code>).</p>
 
 * <p>This class tries to handle <code>null</code> input gracefully.
 * An exception will not be thrown for a <code>null</code>
 * array input. However, an Object array that contains a <code>null</code>
 * element may throw an exception. Each method documents its behaviour.</p>
 *
 @author Stephen Colebourne
 @author Moritz Petersen
 @author <a href="mailto:fredrik@westermarck.com">Fredrik Westermarck</a>
 @author Nikolay Metchev
 @author Matthew Hawthorne
 @author Tim O'Brien
 @author Pete Gieser
 @author Gary Gregory
 @author <a href="mailto:equinus100@hotmail.com">Ashwin S</a>
 @author Maarten Coene
 @since 2.0
 @version $Id: ArrayUtils.java 632503 2008-03-01 00:21:52Z ggregory $
 */
public class Main {
  
  
  /**
   * <p>Inserts the specified element at the specified position in the array. 
   * Shifts the element currently at that position (if any) and any subsequent
   * elements to the right (adds one to their indices).</p>
   *
   * <p>This method returns a new array with the same elements of the input
   * array plus the given element on the specified position. The component 
   * type of the returned array is always the same as that of the input 
   * array.</p>
   *
   * <p>If the input array is <code>null</code>, a new one element array is returned
   *  whose component type is the same as the element.</p>
   
   * <pre>
   * ArrayUtils.add([1], 0, 2)         = [2, 1]
   * ArrayUtils.add([2, 6], 2, 10)     = [2, 6, 10]
   * ArrayUtils.add([2, 6], 0, -4)     = [-4, 2, 6]
   * ArrayUtils.add([2, 6, 3], 2, 1)   = [2, 6, 1, 3]
   * </pre>
   
   @param array  the array to add the element to, may be <code>null</code>
   @param index  the position of the new object
   @param element  the object to add
   @return A new array containing the existing elements and the new element
   @throws IndexOutOfBoundsException if the index is out of range 
   * (index < 0 || index > array.length).
   */
  public static int[] add(int[] array, int index, int element) {
      return (int[]) add(array, index, new Integer(element), Integer.TYPE);
  }



  
  
  /**
   * Underlying implementation of add(array, index, element) methods. 
   * The last parameter is the class, which may not equal element.getClass 
   * for primitives.
   *
   @param array  the array to add the element to, may be <code>null</code>
   @param index  the position of the new object
   @param element  the object to add
   @param clss the type of the element being added
   @return A new array containing the existing elements and the new element
   */
  private static Object add(Object array, int index, Object element, Class clss) {
      if (array == null) {
          if (index != 0) {
              throw new IndexOutOfBoundsException("Index: " + index + ", Length: 0");
          }
          Object joinedArray = Array.newInstance(clss, 1);
          Array.set(joinedArray, 0, element);
          return joinedArray;
      }
      int length = Array.getLength(array);
      if (index > length || index < 0) {
          throw new IndexOutOfBoundsException("Index: " + index + ", Length: " + length);
      }
      Object result = Array.newInstance(clss, length + 1);
      System.arraycopy(array, 0, result, 0, index);
      Array.set(result, index, element);
      if (index < length) {
          System.arraycopy(array, index, result, index + 1, length - index);
      }
      return result;
  }

}

   
    
    
  
Related examples in the same category
1. Adds all the elements of the given arrays into a new boolean-value array.
2. Adds all the elements of the given arrays into a new byte-type array.
3. Adds all the elements of the given arrays into a new char-type array.
4. Adds all the elements of the given arrays into a new double-type array.
5. Adds all the elements of the given arrays into a new float-type array.
6. Adds all the elements of the given arrays into a new int-type array.
7. Adds all the elements of the given arrays into a new long-type array.
8. Adds all the elements of the given arrays into a new short-type array.
9. Copies the given array and adds the given element at the end of the new array. (char type value)
10. Copies the given array and adds the given element at the end of the new array. (float type value)
11. Copies the given array and adds the given element at the end of the new array. (long value type)
12. Copies the given array and adds the given element at the end of the new array. (object value type)
13. Copies the given array and adds the given element at the end of the new array.(boolean value type)
14. Copies the given array and adds the given element at the end of the new array.(byte value type)
15. Copies the given array and adds the given element at the end of the new array.(double type value)
16. Copies the given array and adds the given element at the end of the new array.(int value type)
17. Copies the given array and adds the given element at the end of the new array.(short type array)
18. Inserts the specified element at the specified position in the array.
19. Inserts the specified element at the specified position in the boolean-type-value array.
20. Inserts the specified element at the specified position in the byte-type-value array.
21. Inserts the specified element at the specified position in the char-type-value array.
22. Inserts the specified element at the specified position in the double-type-value array.
23. Inserts the specified element at the specified position in the float-value-type array.
24. Inserts the specified element at the specified position in the long-type-value array.
25. Inserts the specified element at the specified position in the short-value-type array.
26. Removes the element at the specified position from the specified array.
27. Removes the element at the specified position from the specified long type array.
28. Removes the first occurrence of the specified element from the specified array.
29. Removes the first occurrence of the specified element from the specified long value array.
30. Insert value to array
31. Array Copy Utilities
32. Concatenate Java arrays
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.