Converts a list of Integer objects to an array of primitive int s. @param integers List of Integer objects @return Array of primitive int s @deprecated Use Ints#toArray(java.util.Collection)
(List<Integer> integers)
| 44 | * @deprecated Use {@link Ints#toArray(java.util.Collection)} |
| 45 | */ |
| 46 | @Deprecated // to be removed before 2.0 |
| 47 | public static int[] toArray(List<Integer> integers) { |
| 48 | return Ints.toArray(integers); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Returns a list backed by an array of primitive <code>int</code> values. |
no outgoing calls