Java List Value Add add(List data, Object... values)

Here you can find the source of add(List data, Object... values)

Description

add

License

Open Source License

Declaration

private static void add(List<Object[]> data, Object... values) 

Method Source Code

//package com.java2s;
/*/*from  www. java  2s.co m*/
 * Copyright (c) 2002-2012 Alibaba Group Holding Limited.
 * All rights reserved.
 *
 * Licensed 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.
 */

import java.util.List;

public class Main {
    private static void add(List<Object[]> data, Object... values) {
        data.add(values);
    }
}

Related

  1. add(List list, E element)
  2. add(List list, int index, T item)
  3. add(List list, int index, T item)
  4. add(List vector, int[] sparseVector)
  5. add(List list, Object[] array)
  6. add(List> target, E value)
  7. add(List a, List b)
  8. add(List list, String value)
  9. add(List aList, T anObj)

  10. HOME | Copyright © www.java2s.com 2016