Java Vector Add add(Vector left, Vector right)

Here you can find the source of add(Vector left, Vector right)

Description

Adds every element of right to left.

License

Common Public License

Declaration

static void add(Vector left, Vector right) 

Method Source Code

//package com.java2s;
/*//from w  w  w.j a v a  2s.  c  om
 // $Id: //open/mondrian/src/main/mondrian/olap/fun/FunUtil.java#18 $
 // (C) Copyright 2002 Kana Software, Inc.
 // This software is subject to the terms of the Common Public License
 // Agreement, available at the following URL:
 // http://www.opensource.org/licenses/cpl.html.
 // (C) Copyright 2002 Kana Software, Inc. and others.
 // All Rights Reserved.
 // You must accept the terms of that agreement to use this software.
 //
 // jhyde, 3 March, 2002
 */

import java.util.*;

public class Main {
    /** Adds every element of <code>right</code> to <code>left</code>. **/
    static void add(Vector left, Vector right) {
        if (right == null) {
            return;
        }
        for (int i = 0, n = right.size(); i < n; i++) {
            final Object o = right.elementAt(i);
            left.addElement(o);
        }
    }
}

Related

  1. add(List> vectors)
  2. Add(Vector V, String S1, String S2, String S3)
  3. addAll(Vector vector, Object[] copyFrom)
  4. addArray(Vector vector, Object[] array)
  5. addToVector(Vector from, Vector to)