This builds a JSON array from a set of data @param data Data to build JSON array from @return List
(Object... data)
| 60 | * @return List |
| 61 | */ |
| 62 | public static List toArray(Object... data) { |
| 63 | return Lists.newArrayList(data); |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * These help build a single JSON array using a mapper function |
no outgoing calls
no test coverage detected