jas.utils
Class ArrayCast
java.lang.Object
jas.utils.ArrayCast
public class ArrayCast
- extends java.lang.Object
A utility which casts array of native values to other native types.
Title: JAS
Description: Java Agent-based Simulation library
Copyright (C) 2002 Michele Sonnessa
This library is free software; you can redistribute it and/or modify it under the terms
of the GNU Lesser General Public License as published by the Free Software Foundation;
either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this
library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307, USA.
- Author:
- Michele Sonnessa
Method Summary |
static double[] |
toDouble(float[] data,
int from,
int to)
|
static double[] |
toDouble(int[] data,
int from,
int to)
|
static double[] |
toDouble(long[] data,
int from,
int to)
|
static float[] |
toFloat(double[] data,
int from,
int to)
|
static float[] |
toFloat(int[] data,
int from,
int to)
|
static float[] |
toFloat(long[] data,
int from,
int to)
|
static int[] |
toInt(double[] data,
int from,
int to)
|
static int[] |
toInt(float[] data,
int from,
int to)
|
static int[] |
toInt(long[] data,
int from,
int to)
|
static long[] |
toLong(double[] data,
int from,
int to)
|
static long[] |
toLong(float[] data,
int from,
int to)
|
static long[] |
toLong(int[] data,
int from,
int to)
|
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ArrayCast
public ArrayCast()
toDouble
public static double[] toDouble(float[] data,
int from,
int to)
toDouble
public static double[] toDouble(int[] data,
int from,
int to)
toDouble
public static double[] toDouble(long[] data,
int from,
int to)
toFloat
public static float[] toFloat(double[] data,
int from,
int to)
toFloat
public static float[] toFloat(int[] data,
int from,
int to)
toFloat
public static float[] toFloat(long[] data,
int from,
int to)
toInt
public static int[] toInt(double[] data,
int from,
int to)
toInt
public static int[] toInt(float[] data,
int from,
int to)
toInt
public static int[] toInt(long[] data,
int from,
int to)
toLong
public static long[] toLong(double[] data,
int from,
int to)
toLong
public static long[] toLong(float[] data,
int from,
int to)
toLong
public static long[] toLong(int[] data,
int from,
int to)