Java Array Range Copy copyOf(Integer[] original)

Here you can find the source of copyOf(Integer[] original)

Description

copy Of

License

Apache License

Declaration

public static Integer[] copyOf(Integer[] original) 

Method Source Code

//package com.java2s;
/**//from ww w. ja  v  a 2  s  . c  om
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You 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.
 */

public class Main {

    public static Integer[] copyOf(Integer[] original) {
        int len = original.length;
        Integer[] copy = new Integer[len];
        System.arraycopy(original, 0, copy, 0, len);
        return copy;
    }
}

Related

  1. copyOf(int[] arr, int length)
  2. copyOf(int[] old, int length)
  3. copyOf(int[] source, int length)
  4. copyOf(int[] src, int size)
  5. copyOf(int[][] pixels)
  6. copyOf(Object src, int newLength)
  7. copyOf(Object[] array, int newLength)
  8. copyOf(Object[] values, int nlen)
  9. copyOf(String[] data, int newLength)