Java Vector to String vectorToStringArray(Vector vector)

Here you can find the source of vectorToStringArray(Vector vector)

Description

vector To String Array

License

Open Source License

Declaration

public static String[] vectorToStringArray(Vector vector) 

Method Source Code

//package com.java2s;
/*//from  ww  w.  j  a v  a 2 s. c  o m
 * Copyright: (c) 2002-2006 Mayo Foundation for Medical Education and
 * Research (MFMER).  All rights reserved.  MAYO, MAYO CLINIC, and the
 * triple-shield Mayo logo are trademarks and service marks of MFMER.
 *
 * Except as contained in the copyright notice above, the trade names, 
 * trademarks, service marks, or product names of the copyright holder shall
 * not be used in advertising, promotion or otherwise in connection with
 * this Software without prior written authorization of the copyright holder.
 * 
 * Licensed under the Eclipse Public License, Version 1.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.eclipse.org/legal/epl-v10.html
 * 
 * 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.*;

public class Main {
    public static String[] vectorToStringArray(Vector vector) {
        if (vector == null)
            return new String[0];

        String[] stringArray = new String[vector.size()];

        for (int i = 0; i < vector.size(); i++)
            stringArray[i] = vector.elementAt(i).toString();

        return stringArray;
    }
}

Related

  1. vector_to_strings(Vector v)
  2. vectorString(Vector vec)
  3. vectorToNickNameArray(Vector nicksAndPaths)
  4. vectorToString(double[] v)
  5. vectorToString(int[] v)