Java Array Shorten toShortArray(String[] anArray)

Here you can find the source of toShortArray(String[] anArray)

Description

to Short Array

License

Open Source License

Parameter

Parameter Description
anArray The array to convert.

Exception

Parameter Description
NumberFormatException if any of the input elements can not beparsed as a short.

Return

An array of shorts of the same length as the input, each element of which contains the decoded short of the corresponding input element.

Declaration

public static short[] toShortArray(String[] anArray) throws NumberFormatException 

Method Source Code

//package com.java2s;
/*/*w w w .j  ava 2s.c om*/
 * ArrayUtilities.java (Class: com.madphysicist.tools.util.ArrayUtilities)
 *
 * Mad Physicist JTools Project (General Purpose Utilities)
 *
 * The MIT License (MIT)
 *
 * Copyright (c) 2013 by Joseph Fox-Rabinovitz
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

public class Main {
    /**
     * @brief Converts an array of strings into an array of shorts.
     *
     * The strings are expected to be in base ten.
     *
     * @param anArray The array to convert.
     * @return An array of shorts of the same length as the input, each element
     * of which contains the decoded short of the corresponding input element.
     * @throws NumberFormatException if any of the input elements can not be
     * parsed as a short.
     * @since 1.0.2
     */
    public static short[] toShortArray(String[] anArray) throws NumberFormatException {
        short[] output = new short[anArray.length];
        for (int index = 0; index < anArray.length; index++)
            output[index] = Short.parseShort(anArray[index]);
        return output;
    }
}

Related

  1. toShortArray(final byte[] array)
  2. toShortArray(long value, int length)
  3. toShortArray(Number[] array)
  4. toShortArray(Object[] array)
  5. toShortArray(String str, String separator)