List: toArray(T[] a) : List « java.util « Java by API






List: toArray(T[] a)

   

import java.util.Arrays;
import java.util.List;

public class MainClass {
  public static void main(String args[]) {
    String[] a = new String[] { "a", "c", "b" };

    List l = (Arrays.asList());
    String stuff[] = (String[]) l.toArray(new String[0]);
  }
}
           
         
    
    
  








Related examples in the same category

1.List: add(T e)
2.List: addAll(Collection c)
3.List: clear()
4.List: clone()
5.List: contains(Object o)
6.List: equals(Object o)
7.List: get(int index)
8.List: isEmpty()
9.List: iterator()
10.List: lastIndexOf(Object o)
11.List: listIterator()
12.List: remove(int index)
13.List: remove(Object o)
14.List: removeAll(Collection c)
15.List: retainAll(Collection c)
16.List: set(int index, T element)
17.List: subList(int fromIndex, int toIndex)