Java Array Create toArray(T... items)

Here you can find the source of toArray(T... items)

Description

to Array

License

Apache License

Declaration

public static <T> T[] toArray(T... items) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {

    public static <T> T[] toArray(T... items) {
        return items;

    }//from   w  ww  .  j  av a  2  s  .  c om
}

Related

  1. toArray(String str)
  2. toArray(String str, String split)
  3. toArray(String string)
  4. toArray(String text)
  5. toArray(T... items)
  6. toArrayClass(String className)
  7. toArrayDouble(final int[] array)
  8. toArrayElement(String s)
  9. toArrayLE(int val)