|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object marf.util.Arrays
public class Arrays
marf.util.Arrays
is an extension of java.util.Arrays
to group a lot of commonly used arrays-related functionality in one place. This class
can do whatever java.util.Arrays
can, plus allows copying array portions,
including cases when the source and destination arrays are of different types, and providing
array-to-Vector and array-to-delimited-String conversions. For the type-conversion
routines a proper casting to the destination type is performed when needed. It also
allows inheritance from the class, so that anyone wishing to extend it is welcome to
do so without the pain of re-wrapping the methods.
NOTE: the java.util.Arrays
compliance is true as of JDK 1.4.
NOTE: it does not actually inherit (extend) from java.util.Arrays
, but rather wraps
existing methods, plus adds the copy()
wrappers of System.arraycopy()
,
and arrayToVector()
methods.
$Id: Arrays.java,v 1.41 2008/02/16 20:58:06 mokhov Exp $
Arrays
,
System.arraycopy(Object, int, Object, int, int)
Constructor Summary | |
---|---|
protected |
Arrays()
The protected default constructor is provided to allow making extension of this class if developers desire to do so. |
Method Summary | |
---|---|
static java.lang.String |
arrayToCSV(boolean[] pabData)
Converts array of booleans to a single comma-separated String. |
static java.lang.String |
arrayToCSV(byte[] patData)
Converts array of bytes to a single comma-separated String. |
static java.lang.String |
arrayToCSV(char[] pacData)
Converts array of characters to a single comma-separated String. |
static java.lang.String |
arrayToCSV(double[] padData)
Converts array of doubles to a single comma-separated String. |
static java.lang.String |
arrayToCSV(float[] pafData)
Converts array of floats to a single comma-separated String. |
static java.lang.String |
arrayToCSV(int[] paiData)
Converts array of integers to a single comma-separated String. |
static java.lang.String |
arrayToCSV(long[] palData)
Converts array of longs to a single comma-separated String. |
static java.lang.String |
arrayToCSV(java.lang.Object[] paoData)
Converts array of Objects to a single comma-separated String. |
static java.lang.String |
arrayToCSV(java.lang.String[] pastrData)
Converts array of Strings to a single comma-separated String. |
static java.lang.String |
arrayToDelimitedString(boolean[] pabData,
java.lang.String pstrDelimeter)
Converts array of booleans to a single string separated by the specified delimiter. |
static java.lang.String |
arrayToDelimitedString(byte[] patData,
java.lang.String pstrDelimeter)
Converts array of bytes to a single string separated by the specified delimiter. |
static java.lang.String |
arrayToDelimitedString(char[] pacData,
java.lang.String pstrDelimiter)
Converts array of characters to a single string separated by the specified delimiter. |
static java.lang.String |
arrayToDelimitedString(double[] padData,
java.lang.String pstrDelimeter)
Converts array of doubles to a single string separated by the specified delimiter. |
static java.lang.String |
arrayToDelimitedString(float[] pafData,
java.lang.String pstrDelimeter)
Converts array of floats to a single string separated by the specified delimiter. |
static java.lang.String |
arrayToDelimitedString(int[] paiData,
java.lang.String pstrDelimeter)
Converts array of integers to a single string separated by the specified delimiter. |
static java.lang.String |
arrayToDelimitedString(long[] palData,
java.lang.String pstrDelimeter)
Converts array of longs to a single string separated by the specified delimiter. |
static java.lang.String |
arrayToDelimitedString(java.lang.Object[] paoData,
java.lang.String pstrDelimeter)
Converts array of Objects to a single string separated by the specified delimiter. |
static java.lang.String |
arrayToDelimitedString(java.lang.String[] pastrData,
java.lang.String pstrDelimeter)
Converts array of Strings to a single string separated by the specified delimiter. |
static java.lang.String |
arrayToString(boolean[] pabData)
Converts array of booleans to a single space-separated String. |
static java.lang.String |
arrayToString(byte[] patData)
Converts array of bytes to a single space-separated String. |
static java.lang.String |
arrayToString(char[] pacData)
Converts array of characters to a single space-separated String. |
static java.lang.String |
arrayToString(double[] padData)
Converts array of doubles to a single space-separated String. |
static java.lang.String |
arrayToString(float[] pafData)
Converts array of floats to a single space-separated String. |
static java.lang.String |
arrayToString(int[] paiData)
Converts array of integers to a single space-separated String. |
static java.lang.String |
arrayToString(long[] palData)
Converts array of longs to a single space-separated String. |
static java.lang.String |
arrayToString(java.lang.Object[] paoData)
Converts array of Objects to a single space-separated String. |
static java.lang.String |
arrayToString(java.lang.String[] pastrData)
Converts array of Strings to a single space-separated String. |
static java.util.Vector |
arrayToVector(byte[] patData)
Converts array of bytes to Vector. |
static java.util.Vector |
arrayToVector(char[] pacData)
Converts array of characters to Vector. |
static java.util.Vector |
arrayToVector(double[] padData)
Converts array of doubles to Vector. |
static java.util.Vector |
arrayToVector(float[] pafData)
Converts array of floats to Vector. |
static java.util.Vector |
arrayToVector(int[] paiData)
Converts array of ints to Vector. |
static java.util.Vector |
arrayToVector(long[] palData)
Converts array of longs to Vector. |
static java.util.Vector |
arrayToVector(java.lang.Object[] paoData)
Converts array of Objects to Vector. |
static java.util.Vector |
arrayToVector(short[] pasData)
Converts array of shorts to Vector. |
static java.util.Vector |
arrayToVector(java.lang.String[] pastrData)
Converts array of Strings to Vector. |
static java.util.List |
asList(java.lang.Object[] paoObjects)
Provides an array-of-objects-to-List bridge. |
static int |
binarySearch(byte[] patArray,
byte ptValue)
The binarySearch() routine is based on java.util.Arrays.binarySearch() . |
static int |
binarySearch(char[] pacArray,
char pcValue)
The binarySearch() routine is based on java.util.Arrays.binarySearch() . |
static int |
binarySearch(double[] padArray,
double pdValue)
The binarySearch() routine is based on java.util.Arrays.binarySearch() . |
static int |
binarySearch(float[] pafArray,
float pfValue)
The binarySearch() routine is based on java.util.Arrays.binarySearch() . |
static int |
binarySearch(int[] paiArray,
int piValue)
The binarySearch() routine is based on java.util.Arrays.binarySearch() . |
static int |
binarySearch(java.lang.Object[] paoArray,
java.lang.Object poValue)
The binarySearch() routine is based on java.util.Arrays.binarySearch() . |
static int |
binarySearch(java.lang.Object[] paoArray,
java.lang.Object poValue,
java.util.Comparator poComparator)
The binarySearch() routine is based on java.util.Arrays.binarySearch() . |
static int |
binarySearch(short[] pasArray,
short psValue)
The binarySearch() routine is based on java.util.Arrays.binarySearch() . |
static boolean[] |
concatenate(boolean[] pabLHS,
boolean[] pabRHS)
Concatenates two arrays of booleans and returns a newly allocated array of the concatenated pieces. |
static byte[] |
concatenate(byte[] patLHS,
byte[] patRHS)
Concatenates two arrays of bytes and returns a newly allocated array of the concatenated pieces. |
static char[] |
concatenate(char[] pacLHS,
char[] pacRHS)
Concatenates two arrays of characters and returns a newly allocated array of the concatenated pieces. |
static double[] |
concatenate(double[] padLHS,
double[] padRHS)
Concatenates two arrays of doubles and returns a newly allocated array of the concatenated pieces. |
static float[] |
concatenate(float[] pafLHS,
float[] pafRHS)
Concatenates two arrays of floats and returns a newly allocated array of the concatenated pieces. |
static int[] |
concatenate(int[] paiLHS,
int[] paiRHS)
Concatenates two arrays of integers and returns a newly allocated array of the concatenated pieces. |
static long[] |
concatenate(long[] palLHS,
long[] palRHS)
Concatenates two arrays of longs and returns a newly allocated array of the concatenated pieces. |
static java.lang.Object[] |
concatenate(java.lang.Object[] paoLHS,
java.lang.Object[] paoRHS)
Concatenates two arrays of objects and returns a newly allocated array of the concatenated pieces. |
static short[] |
concatenate(short[] pasLHS,
short[] pasRHS)
Concatenates two arrays of shorts and returns a newly allocated array of the concatenated pieces. |
static java.lang.String[] |
concatenate(java.lang.String[] pastrLHS,
java.lang.String[] pastrRHS)
Concatenates two arrays of Strings and returns a newly allocated array of the concatenated pieces. |
static void |
copy(boolean[] pabDestination,
boolean[] pabSource,
int piHowMany)
Copies N boolean elements from source to destination. |
static void |
copy(boolean[] pabDestination,
int piStartIndex,
boolean[] pabSource)
Copies source to destination starting at certain index in the destination. |
static void |
copy(boolean[] pabDestination,
int piStartIndex,
boolean[] pabSource,
int piHowMany)
Copies N boolean elements from source to destination starting at certain index in the destination. |
static void |
copy(boolean[] pabDestination,
int piDestinationStartIndex,
boolean[] pabSource,
int piSourceStartIndex,
int piHowMany)
Copies N boolean elements from source to destination starting at certain index in the destination. |
static void |
copy(byte[] patDestination,
byte[] patSource,
int piHowMany)
Copies N byte elements from source to destination. |
static void |
copy(byte[] patDestination,
char[] pacSource)
Copy-conversion method that copies all character elements from an array of characters into array of bytes. |
static void |
copy(byte[] patDestination,
char[] pacSource,
int piHowMany)
Copy-conversion method that copies N character elements from an array of characters into array of bytes. |
static void |
copy(byte[] patDestination,
double[] padSource)
Copy-conversion method that copies all double elements from an array of doubles into array of bytes. |
static void |
copy(byte[] patDestination,
double[] padSource,
int piHowMany)
Copy-conversion method that copies N double elements from an array of doubles into array of bytes. |
static void |
copy(byte[] patDestination,
float[] pafSource)
Copy-conversion method that copies all float elements from an array of floats into array of characters. |
static void |
copy(byte[] patDestination,
float[] pafSource,
int piHowMany)
Copy-conversion method that copies N float elements from an array of floats into array of bytes. |
static void |
copy(byte[] patDestination,
int[] paiSource)
Copy-conversion method that copies all int elements from an array of ints into array of bytes. |
static void |
copy(byte[] patDestination,
int[] paiSource,
int piHowMany)
Copy-conversion method that copies N int elements from an array of ints into array of bytes. |
static void |
copy(byte[] patDestination,
int piStartIndex,
byte[] patSource)
Copies source to destination starting at certain index in the destination. |
static void |
copy(byte[] patDestination,
int piStartIndex,
byte[] patSource,
int piHowMany)
Copies N byte elements from source to destination starting at certain index in the destination. |
static void |
copy(byte[] patDestination,
int piDestinationStartIndex,
byte[] patSource,
int piSourceStartIndex,
int piHowMany)
Copies N byte elements from source to destination starting at certain index in the destination. |
static void |
copy(byte[] patDestination,
int piDestinationFrom,
char[] pacSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N character elements from an array of characters into array of bytes. |
static void |
copy(byte[] patDestination,
int piDestinationFrom,
double[] padSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N double elements from an array of doubles into array of bytes. |
static void |
copy(byte[] patDestination,
int piDestinationFrom,
float[] pafSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N float elements from an array of floats into array of bytes. |
static void |
copy(byte[] patDestination,
int piDestinationFrom,
int[] paiSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N int elements from an array of ints into array of bytes. |
static void |
copy(byte[] patDestination,
int piDestinationFrom,
short[] pasSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N short elements from an array of shorts into array of bytes. |
static void |
copy(byte[] patDestination,
int piDestinationFrom,
java.lang.String[] pastrSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N String elements from an array of Strings into array of bytes. |
static void |
copy(byte[] patDestination,
short[] pasSource)
Copy-conversion method that copies all short elements from an array of shorts into array of bytes. |
static void |
copy(byte[] patDestination,
short[] pasSource,
int piHowMany)
Copy-conversion method that copies N short elements from an array of shorts into array of bytes. |
static void |
copy(byte[] patDestination,
java.lang.String[] pastrSource)
Copy-conversion method that copies all String elements from an array of Strings into array of bytes. |
static void |
copy(byte[] patDestination,
java.lang.String[] pastrSource,
int piHowMany)
Copy-conversion method that copies N String elements from an array of Strings into array of bytes. |
static void |
copy(char[] pacDestination,
byte[] patSource)
Copy-conversion method that copies all byte elements from an array of bytes into array of bytes. |
static void |
copy(char[] pacDestination,
byte[] patSource,
int piHowMany)
Copy-conversion method that copies N byte elements from an array of bytes into array of characters. |
static void |
copy(char[] pacDestination,
char[] pacSource,
int piHowMany)
Copies N character elements from source to destination. |
static void |
copy(char[] pacDestination,
double[] padSource)
Copy-conversion method that copies all double elements from an array of doubles into array of characters. |
static void |
copy(char[] pacDestination,
double[] padSource,
int piHowMany)
Copy-conversion method that copies N double elements from an array of doubles into array of characters. |
static void |
copy(char[] pacDestination,
float[] pafSource)
Copy-conversion method that copies all float elements from an array of floats into array of characters. |
static void |
copy(char[] pacDestination,
float[] pafSource,
int piHowMany)
Copy-conversion method that copies N float elements from an array of floats into array of characters. |
static void |
copy(char[] pacDestination,
int[] paiSource)
Copy-conversion method that copies all int elements from an array of ints into array of characters. |
static void |
copy(char[] pacDestination,
int[] paiSource,
int piHowMany)
Copy-conversion method that copies N int elements from an array of ints into array of characters. |
static void |
copy(char[] pacDestination,
int piDestinationFrom,
byte[] patSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N byte elements from an array of bytes into array of characters. |
static void |
copy(char[] pacDestination,
int piStartIndex,
char[] pacSource)
Copies source to destination starting at certain index in the destination. |
static void |
copy(char[] pacDestination,
int piStartIndex,
char[] pacSource,
int piHowMany)
Copies N character elements from source to destination starting at certain index in the destination. |
static void |
copy(char[] pacDestination,
int piDestinationStartIndex,
char[] pacSource,
int piSourceStartIndex,
int piHowMany)
Copies N character elements from source to destination starting at certain index in the destination. |
static void |
copy(char[] pacDestination,
int piDestinationFrom,
double[] padSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N double elements from an array of doubles into array of characters. |
static void |
copy(char[] pacDestination,
int piDestinationFrom,
float[] pafSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N float elements from an array of floats into array of characters. |
static void |
copy(char[] pacDestination,
int piDestinationFrom,
int[] paiSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N int elements from an array of ints into array of characters. |
static void |
copy(char[] pacDestination,
int piDestinationFrom,
short[] pasSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N short elements from an array of shorts into array of characters. |
static void |
copy(char[] pacDestination,
short[] pasSource)
Copy-conversion method that copies all short elements from an array of shorts into array of characters. |
static void |
copy(char[] pacDestination,
short[] pasSource,
int piHowMany)
Copy-conversion method that copies N short elements from an array of shorts into array of characters. |
static void |
copy(double[] padDestination,
byte[] patSource)
Copy-conversion method that copies all byte elements from an array of bytes into array of doubles. |
static void |
copy(double[] padDestination,
byte[] patSource,
int piHowMany)
Copy-conversion method that copies N byte elements from an array of bytes into array of doubles. |
static void |
copy(double[] padDestination,
char[] pacSource)
Copy-conversion method that copies all character elements from an array of characters into array of doubles. |
static void |
copy(double[] padDestination,
char[] pacSource,
int piHowMany)
Copy-conversion method that copies N character elements from an array of characters into array of doubles. |
static void |
copy(double[] padDestination,
double[] padSource,
int piHowMany)
Copies N double elements from source to destination. |
static void |
copy(double[] padDestination,
float[] pafSource)
Copy-conversion method that copies all float elements from an array of floats into array of doubles. |
static void |
copy(double[] padDestination,
float[] pafSource,
int piHowMany)
Copy-conversion method that copies N float elements from an array of floats into array of doubles. |
static void |
copy(double[] padDestination,
int[] paiSource)
Copy-conversion method that copies all int elements from an array of ints into array of doubles. |
static void |
copy(double[] padDestination,
int[] paiSource,
int piHowMany)
Copy-conversion method that copies N int elements from an array of ints into array of doubles. |
static void |
copy(double[] padDestination,
int piDestinationFrom,
byte[] patSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N byte elements from an array of bytes into array of doubles. |
static void |
copy(double[] padDestination,
int piDestinationFrom,
char[] pacSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N character elements from an array of characters into array of doubles. |
static void |
copy(double[] padDestination,
int piStartIndex,
double[] padSource)
Copies source to destination starting at certain index in the destination. |
static void |
copy(double[] padDestination,
int piStartIndex,
double[] padSource,
int piHowMany)
Copies N double elements from source to destination starting at certain index in the destination. |
static void |
copy(double[] padDestination,
int piDestinationStartIndex,
double[] padSource,
int piSourceStartIndex,
int piHowMany)
Copies N double elements from source to destination starting at certain index in the destination. |
static void |
copy(double[] padDestination,
int piDestinationFrom,
float[] pafSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N float elements from an array of floats into array of doubles. |
static void |
copy(double[] padDestination,
int piDestinationFrom,
int[] paiSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N int elements from an array of ints into array of doubles. |
static void |
copy(double[] padDestination,
int piDestinationFrom,
short[] pasSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N short elements from an array of shorts into array of doubles. |
static void |
copy(double[] padDestination,
int piDestinationFrom,
java.lang.String[] pastrSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N String elements from an array of Strings into array of doubles. |
static void |
copy(double[] padDestination,
short[] pasSource)
Copy-conversion method that copies all short elements from an array of shorts into array of doubles. |
static void |
copy(double[] padDestination,
short[] pasSource,
int piHowMany)
Copy-conversion method that copies N short elements from an array of shorts into array of doubles. |
static void |
copy(double[] padDestination,
java.lang.String[] pastrSource)
Copy-conversion method that copies all String elements from an array of Strings into array of doubles. |
static void |
copy(double[] padDestination,
java.lang.String[] pastrSource,
int piHowMany)
Copy-conversion method that copies N String elements from an array of Strings into array of doubles. |
static void |
copy(float[] pafDestination,
byte[] patSource)
Copy-conversion method that copies all byte elements from an array of bytes into array of floats. |
static void |
copy(float[] pafDestination,
byte[] patSource,
int piHowMany)
Copy-conversion method that copies N byte elements from an array of bytes into array of floats. |
static void |
copy(float[] pafDestination,
char[] pacSource)
Copy-conversion method that copies all character elements from an array of characters into array of floats. |
static void |
copy(float[] pafDestination,
char[] pacSource,
int piHowMany)
Copy-conversion method that copies N character elements from an array of characters into array of floats. |
static void |
copy(float[] pafDestination,
double[] padSource)
Copy-conversion method that copies all double elements from an array of doubles into array of floats. |
static void |
copy(float[] pafDestination,
double[] padSource,
int piHowMany)
Copy-conversion method that copies N double elements from an array of doubles into array of floats. |
static void |
copy(float[] pafDestination,
float[] pafSource,
int piHowMany)
Copies N float elements from source to destination. |
static void |
copy(float[] pafDestination,
int[] paiSource)
Copy-conversion method that copies all int elements from an array of ints into array of floats. |
static void |
copy(float[] pafDestination,
int[] paiSource,
int piHowMany)
Copy-conversion method that copies N int elements from an array of ints into array of floats. |
static void |
copy(float[] pafDestination,
int piDestinationFrom,
byte[] patSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N byte elements from an array of bytes into array of floats. |
static void |
copy(float[] pafDestination,
int piDestinationFrom,
char[] pacSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N character elements from an array of characters into array of floats. |
static void |
copy(float[] pafDestination,
int piDestinationFrom,
double[] padSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N double elements from an array of doubles into array of floats. |
static void |
copy(float[] pafDestination,
int piStartIndex,
float[] pafSource)
Copies source to destination starting at certain index in the destination. |
static void |
copy(float[] pafDestination,
int piStartIndex,
float[] pafSource,
int piHowMany)
Copies N float elements from source to destination starting at certain index in the destination. |
static void |
copy(float[] pafDestination,
int piDestinationStartIndex,
float[] pafSource,
int piSourceStartIndex,
int piHowMany)
Copies N float elements from source to destination starting at certain index in the destination. |
static void |
copy(float[] pafDestination,
int piDestinationFrom,
int[] paiSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N int elements from an array of ints into array of floats. |
static void |
copy(float[] pafDestination,
int piDestinationFrom,
short[] pasSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N short elements from an array of shorts into array of floats. |
static void |
copy(float[] pafDestination,
int piDestinationFrom,
java.lang.String[] pastrSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N String elements from an array of Strings into array of floats. |
static void |
copy(float[] pafDestination,
short[] pasSource)
Copy-conversion method that copies all short elements from an array of shorts into array of floats. |
static void |
copy(float[] pafDestination,
short[] pasSource,
int piHowMany)
Copy-conversion method that copies N short elements from an array of shorts into array of floats. |
static void |
copy(float[] pafDestination,
java.lang.String[] pastrSource)
Copy-conversion method that copies all String elements from an array of Strings into array of floats. |
static void |
copy(float[] pafDestination,
java.lang.String[] pastrSource,
int piHowMany)
Copy-conversion method that copies N String elements from an array of Strings into array of floats. |
static void |
copy(int[] paiDestination,
byte[] patSource)
Copy-conversion method that copies all byte elements from an array of bytes into array of integers. |
static void |
copy(int[] paiDestination,
byte[] patSource,
int piHowMany)
Copy-conversion method that copies N byte elements from an array of bytes into array of integers. |
static void |
copy(int[] paiDestination,
char[] pacSource)
Copy-conversion method that copies all character elements from an array of characters into array of integers. |
static void |
copy(int[] paiDestination,
char[] pacSource,
int piHowMany)
Copy-conversion method that copies N character elements from an array of characters into array of integers. |
static void |
copy(int[] paiDestination,
double[] padSource)
Copy-conversion method that copies all double elements from an array of doubles into array of ints. |
static void |
copy(int[] paiDestination,
double[] padSource,
int piHowMany)
Copy-conversion method that copies N double elements from an array of doubles into array of integers. |
static void |
copy(int[] paiDestination,
float[] pafSource)
Copy-conversion method that copies all float elements from an array of floats into array of integers. |
static void |
copy(int[] paiDestination,
float[] pafSource,
int piHowMany)
Copy-conversion method that copies N float elements from an array of floats into array of integers. |
static void |
copy(int[] paiDestination,
int[] paiSource,
int piHowMany)
Copies N int elements from source to destination. |
static void |
copy(int[] paiDestination,
int piDestinationFrom,
byte[] patSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N byte elements from an array of bytes into array of integers. |
static void |
copy(int[] paiDestination,
int piDestinationFrom,
char[] pacSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N character elements from an array of characters into array of integers. |
static void |
copy(int[] paiDestination,
int piDestinationFrom,
double[] padSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N double elements from an array of doubles into array of integers. |
static void |
copy(int[] paiDestination,
int piDestinationFrom,
float[] pafSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N float elements from an array of floats into array of integers. |
static void |
copy(int[] paiDestination,
int piStartIndex,
int[] paiSource)
Copies source to destination starting at certain index in the destination. |
static void |
copy(int[] paiDestination,
int piStartIndex,
int[] paiSource,
int piHowMany)
Copies N integer elements from source to destination starting at certain index in the destination. |
static void |
copy(int[] paiDestination,
int piDestinationStartIndex,
int[] paiSource,
int piSourceStartIndex,
int piHowMany)
Copies N integer elements from source to destination starting at certain index in the destination. |
static void |
copy(int[] paiDestination,
int piDestinationFrom,
short[] pasSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N short elements from an array of shorts into array of integers. |
static void |
copy(int[] paiDestination,
int piDestinationFrom,
java.lang.String[] pastrSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N String elements from an array of Strings into array of integers. |
static void |
copy(int[] paiDestination,
short[] pasSource)
Copy-conversion method that copies all short elements from an array of shorts into array of integers. |
static void |
copy(int[] paiDestination,
short[] pasSource,
int piHowMany)
Copy-conversion method that copies N short elements from an array of shorts into array of integers. |
static void |
copy(int[] paiDestination,
java.lang.String[] pastrSource)
Copy-conversion method that copies all String elements from an array of Strings into array of integers. |
static void |
copy(int[] paiDestination,
java.lang.String[] pastrSource,
int piHowMany)
Copy-conversion method that copies N String elements from an array of Strings into array of integers. |
static void |
copy(long[] palDestination,
byte[] patSource)
Copy-conversion method that copies all byte elements from an array of bytes into array of longs. |
static void |
copy(long[] palDestination,
byte[] patSource,
int piHowMany)
Copy-conversion method that copies N byte elements from an array of bytes into array of longs. |
static void |
copy(long[] palDestination,
char[] pacSource)
Copy-conversion method that copies all character elements from an array of characters into array of longs. |
static void |
copy(long[] palDestination,
char[] pacSource,
int piHowMany)
Copy-conversion method that copies N character elements from an array of characters into array of longs. |
static void |
copy(long[] palDestination,
double[] padSource)
Copy-conversion method that copies all double elements from an array of doubles into array of longs. |
static void |
copy(long[] palDestination,
double[] padSource,
int piHowMany)
Copy-conversion method that copies N double elements from an array of doubles into array of longs. |
static void |
copy(long[] palDestination,
float[] pafSource)
Copy-conversion method that copies all float elements from an array of floats into array of longs. |
static void |
copy(long[] palDestination,
float[] pafSource,
int piHowMany)
Copy-conversion method that copies N float elements from an array of floats into array of longs. |
static void |
copy(long[] palDestination,
int[] paiSource)
Copy-conversion method that copies all int elements from an array of ints into array of longs. |
static void |
copy(long[] palDestination,
int[] paiSource,
int piHowMany)
Copy-conversion method that copies N int elements from an array of ints into array of longs. |
static void |
copy(long[] palDestination,
int piDestinationFrom,
byte[] patSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N byte elements from an array of bytes into array of longs. |
static void |
copy(long[] palDestination,
int piDestinationFrom,
char[] pacSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N character elements from an array of characters into array of longs. |
static void |
copy(long[] palDestination,
int piDestinationFrom,
double[] padSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N double elements from an array of doubles into array of longs. |
static void |
copy(long[] palDestination,
int piDestinationFrom,
float[] pafSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N float elements from an array of floats into array of longs. |
static void |
copy(long[] palDestination,
int piDestinationFrom,
int[] paiSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N int elements from an array of ints into array of longs. |
static void |
copy(long[] palDestination,
int piStartIndex,
long[] palSource)
Copies source to destination starting at certain index in the destination. |
static void |
copy(long[] palDestination,
int piStartIndex,
long[] palSource,
int piHowMany)
Copies N long elements from source to destination starting at certain index in the destination. |
static void |
copy(long[] palDestination,
int piDestinationStartIndex,
long[] palSource,
int piSourceStartIndex,
int piHowMany)
Copies N long elements from source to destination starting at certain index in the destination. |
static void |
copy(long[] palDestination,
int piDestinationFrom,
short[] pasSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N short elements from an array of shorts into array of longs. |
static void |
copy(long[] palDestination,
int piDestinationFrom,
java.lang.String[] pastrSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N String elements from an array of Strings into array of longs. |
static void |
copy(long[] palDestination,
long[] palSource,
int piHowMany)
Copies N long elements from source to destination. |
static void |
copy(long[] palDestination,
short[] pasSource)
Copy-conversion method that copies all short elements from an array of shorts into array of longs. |
static void |
copy(long[] palDestination,
short[] pasSource,
int piHowMany)
Copy-conversion method that copies N short elements from an array of shorts into array of longs. |
static void |
copy(long[] palDestination,
java.lang.String[] pastrSource)
Copy-conversion method that copies all String elements from an array of Strings into array of longs. |
static void |
copy(long[] palDestination,
java.lang.String[] pastrSource,
int piHowMany)
Copy-conversion method that copies N String elements from an array of Strings into array of longs. |
static void |
copy(java.lang.Object[] paoDestination,
int piStartIndex,
java.lang.Object[] paoSource)
Generic copy() routine is based on System.arraycopy()
for Object arrays. |
static void |
copy(java.lang.Object[] paoDestination,
int piStartIndex,
java.lang.Object[] paoSource,
int piHowMany)
Generic copy() routine is based on System.arraycopy()
for Object arrays. |
static void |
copy(java.lang.Object[] paoDestination,
int piDestinationStartIndex,
java.lang.Object[] paoSource,
int piSourceStartIndex,
int piHowMany)
Generic copy() routine is based on System.arraycopy()
for Object arrays. |
static void |
copy(java.lang.Object[] paoDestination,
java.lang.Object[] paoSource,
int piHowMany)
Generic copy() routine is based on System.arraycopy()
for Object arrays. |
static void |
copy(java.lang.Object poDestination,
int piStartIndex,
java.lang.Object poSource,
int piHowMany)
Generic copy() routine is based on System.arraycopy() . |
static void |
copy(java.lang.Object poDestination,
int piDestinationStartIndex,
java.lang.Object poSource,
int piSourceStartIndex,
int piHowMany)
Generic copy() routine is based on System.arraycopy() . |
static void |
copy(java.lang.Object poDestination,
java.lang.Object poSource,
int piHowMany)
Generic copy() routine is based on System.arraycopy() . |
static void |
copy(short[] pasDestination,
byte[] patSource)
Copy-conversion method that copies all byte elements from an array of bytes into array of shorts. |
static void |
copy(short[] pasDestination,
byte[] patSource,
int piHowMany)
Copy-conversion method that copies N byte elements from an array of bytes into array of shorts. |
static void |
copy(short[] pasDestination,
char[] pacSource)
Copy-conversion method that copies all character elements from an array of characters into array of shorts. |
static void |
copy(short[] pasDestination,
char[] pacSource,
int piHowMany)
Copy-conversion method that copies N character elements from an array of characters into array of shorts. |
static void |
copy(short[] pasDestination,
double[] padSource)
Copy-conversion method that copies all double elements from an array of doubles into array of shorts. |
static void |
copy(short[] pasDestination,
double[] padSource,
int piHowMany)
Copy-conversion method that copies N double elements from an array of doubles into array of shorts. |
static void |
copy(short[] pasDestination,
float[] pafSource)
Copy-conversion method that copies all float elements from an array of floats into array of shorts. |
static void |
copy(short[] pasDestination,
float[] pafSource,
int piHowMany)
Copy-conversion method that copies N float elements from an array of floats into array of shorts. |
static void |
copy(short[] pasDestination,
int[] paiSource)
Copy-conversion method that copies all int elements from an array of ints into array of shorts. |
static void |
copy(short[] pasDestination,
int[] paiSource,
int piHowMany)
Copy-conversion method that copies N int elements from an array of ints into array of shorts. |
static void |
copy(short[] pasDestination,
int piDestinationFrom,
byte[] patSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N byte elements from an array of bytes into array of shorts. |
static void |
copy(short[] pasDestination,
int piDestinationFrom,
char[] pacSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N character elements from an array of characters into array of shorts. |
static void |
copy(short[] pasDestination,
int piDestinationFrom,
double[] padSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N double elements from an array of doubles into array of shorts. |
static void |
copy(short[] pasDestination,
int piDestinationFrom,
float[] pafSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N float elements from an array of floats into array of shorts. |
static void |
copy(short[] pasDestination,
int piDestinationFrom,
int[] paiSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N int elements from an array of ints into array of shorts. |
static void |
copy(short[] pasDestination,
int piStartIndex,
short[] pasSource)
Copies source to destination starting at certain index in the destination. |
static void |
copy(short[] pasDestination,
int piStartIndex,
short[] pasSource,
int piHowMany)
Copies N short elements from source to destination starting at certain index in the destination. |
static void |
copy(short[] pasDestination,
int piDestinationStartIndex,
short[] pasSource,
int piSourceStartIndex,
int piHowMany)
Copies N short elements from source to destination starting at certain index in the destination. |
static void |
copy(short[] pasDestination,
int piDestinationFrom,
java.lang.String[] pastrSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N String elements from an array of Strings into array of shorts. |
static void |
copy(short[] pasDestination,
short[] pasSource,
int piHowMany)
Copies N short elements from source to destination. |
static void |
copy(short[] pasDestination,
java.lang.String[] pastrSource)
Copy-conversion method that copies all String elements from an array of Strings into array of shorts. |
static void |
copy(short[] pasDestination,
java.lang.String[] pastrSource,
int piHowMany)
Copy-conversion method that copies N String elements from an array of Strings into array of shorts. |
static void |
copy(java.lang.String[] pstrDestination,
byte[] patSource)
Copy-conversion method that copies all byte elements from an array of ints into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
byte[] patSource,
int piHowMany)
Copy-conversion method that copies N byte elements from an array of bytes into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
char[] pacSource)
Copy-conversion method that copies all char elements from an array of chars into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
char[] pacSource,
int piHowMany)
Copy-conversion method that copies N char elements from an array of chars into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
double[] padSource)
Copy-conversion method that copies all double elements from an array of doubles into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
double[] padSource,
int piHowMany)
Copy-conversion method that copies N double elements from an array of doubles into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
float[] pafSource)
Copy-conversion method that copies all float elements from an array of floats into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
float[] pafSource,
int piHowMany)
Copy-conversion method that copies N float elements from an array of floats into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
int[] paiSource)
Copy-conversion method that copies all int elements from an array of ints into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
int[] paiSource,
int piHowMany)
Copy-conversion method that copies N int elements from an array of ints into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
int piDestinationFrom,
byte[] patSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N byte elements from an array of bytes into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
int piDestinationFrom,
char[] pacSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N char elements from an array of chars into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
int piDestinationFrom,
double[] padSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N double elements from an array of doubles into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
int piDestinationFrom,
float[] pafSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N float elements from an array of floats into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
int piDestinationFrom,
int[] paiSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N int elements from an array of ints into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
int piDestinationFrom,
long[] palSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N long elements from an array of longs into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
int piDestinationFrom,
short[] pasSource,
int piSourceFrom,
int piHowMany)
General copy-conversion method that copies N short elements from an array of shorts into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
long[] palSource)
Copy-conversion method that copies all long elements from an array of longs into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
long[] palSource,
int piHowMany)
Copy-conversion method that copies N long elements from an array of longs into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
short[] pasSource)
Copy-conversion method that copies all short elements from an array of shorts into array of Strings. |
static void |
copy(java.lang.String[] pstrDestination,
short[] patSource,
int piHowMany)
Copy-conversion method that copies N short elements from an array of shorts into array of Strings. |
static boolean |
equals(boolean[] pabArray1,
boolean[] pabArray2)
The equals() routine is based on java.util.Arrays.equals() . |
static boolean |
equals(byte[] patArray1,
byte[] patArray2)
The equals() routine is based on java.util.Arrays.equals() . |
static boolean |
equals(char[] pacArray1,
char[] pacArray2)
The equals() routine is based on java.util.Arrays.equals() . |
static boolean |
equals(double[] padArray1,
double[] padArray2)
The equals() routine is based on java.util.Arrays.equals() . |
static boolean |
equals(float[] pafArray1,
float[] pafArray2)
The equals() routine is based on java.util.Arrays.equals() . |
static boolean |
equals(int[] paiArray1,
int[] paiArray2)
The equals() routine is based on java.util.Arrays.equals() . |
static boolean |
equals(long[] palArray1,
long[] palArray2)
The equals() routine is based on java.util.Arrays.equals() . |
static boolean |
equals(java.lang.Object[] paoArray1,
java.lang.Object[] paoArray2)
The equals() routine is based on java.util.Arrays.equals() . |
static boolean |
equals(short[] pasArray1,
short[] pasArray2)
The equals() routine is based on java.util.Arrays.equals() . |
static void |
fill(boolean[] pabArray,
boolean pbValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(boolean[] pabArray,
int piFromIndex,
int piToIndex,
boolean pbValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(byte[] patArray,
byte ptValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(byte[] patArray,
int piFromIndex,
int piToIndex,
byte ptValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(char[] pacArray,
char pcValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(char[] pacArray,
int piFromIndex,
int piToIndex,
char pcValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(double[] padArray,
double pdValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(double[] padArray,
int piFromIndex,
int piToIndex,
double pdValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(float[] pafArray,
float pfValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(float[] pafArray,
int piFromIndex,
int piToIndex,
float pfValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(int[] paiArray,
int piValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(int[] paiArray,
int piFromIndex,
int piToIndex,
int piValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(long[] palArray,
int piFromIndex,
int piToIndex,
long plValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(long[] palArray,
long plValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(java.lang.Object[] paoArray,
int piFromIndex,
int piToIndex,
java.lang.Object paValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(java.lang.Object[] paoArray,
java.lang.Object poValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(short[] pasArray,
int piFromIndex,
int piToIndex,
short psValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fill(short[] pasArray,
short psValue)
The fill() is based on java.util.Arrays.fill() . |
static void |
fillRandom(double[] padArray)
Sets all elements of the parameter at pseudo-random order. |
static java.lang.String |
getMARFSourceCodeRevision()
Returns source code revision information. |
static void |
sort(byte[] patArrayToSort)
A wrapper of java.util.Arrays.sort(byte[]). |
static void |
sort(char[] pacArrayToSort)
A wrapper of java.util.Arrays.sort(char[]). |
static void |
sort(double[] padArrayToSort)
A wrapper of java.util.Arrays.sort(double[]). |
static void |
sort(float[] pafArrayToSort)
A wrapper of java.util.Arrays.sort(float[]). |
static void |
sort(int[] paiArrayToSort)
A wrapper of java.util.Arrays.sort(int[]). |
static void |
sort(long[] palArrayToSort)
A wrapper of java.util.Arrays.sort(double[]). |
static void |
sort(java.lang.Object[] paoArrayToSort)
A wrapper of java.util.Arrays.sort(object []). |
static void |
sort(java.lang.Object[] paoArrayToSort,
java.util.Comparator poComparator)
A wrapper of java.util.Arrays.sort(Object[], Comparator). |
static void |
sort(short[] pasArrayToSort)
A wrapper of java.util.Arrays.sort(short[]). |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected Arrays()
Method Detail |
---|
public static void copy(java.lang.Object poDestination, int piDestinationStartIndex, java.lang.Object poSource, int piSourceStartIndex, int piHowMany)
copy()
routine is based on System.arraycopy()
.
poDestination
- destination array of copypiDestinationStartIndex
- where in the destination array start placing the valuespoSource
- source of elementspiSourceStartIndex
- where in the source array start copying the values frompiHowMany
- how many elements should be copied from the source to destinationpublic static void copy(java.lang.Object[] paoDestination, int piDestinationStartIndex, java.lang.Object[] paoSource, int piSourceStartIndex, int piHowMany)
copy()
routine is based on System.arraycopy()
for Object arrays.
paoDestination
- destination array of objects to copy topiDestinationStartIndex
- where in the destination array start placing the valuespaoSource
- source of Object elementspiSourceStartIndex
- where in the source array start copying the values frompiHowMany
- how many elements should be copied from the source to destinationpublic static void copy(boolean[] pabDestination, int piDestinationStartIndex, boolean[] pabSource, int piSourceStartIndex, int piHowMany)
System.arraycopy()
.
pabDestination
- array to copy topiDestinationStartIndex
- starting index in the destination to start copying topabSource
- array of booleans to copy frompiSourceStartIndex
- starting index in the source to start copying frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(byte[] patDestination, int piDestinationStartIndex, byte[] patSource, int piSourceStartIndex, int piHowMany)
System.arraycopy()
.
patDestination
- array to copy topiDestinationStartIndex
- starting index in the destination to start copying topatSource
- array of bytes to copy frompiSourceStartIndex
- starting index in the source to start copying frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(char[] pacDestination, int piDestinationStartIndex, char[] pacSource, int piSourceStartIndex, int piHowMany)
System.arraycopy()
.
pacDestination
- array to copy topiDestinationStartIndex
- starting index in the destination to start copying topacSource
- array of characters to copy frompiSourceStartIndex
- starting index in the source to start copying frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(int[] paiDestination, int piDestinationStartIndex, int[] paiSource, int piSourceStartIndex, int piHowMany)
System.arraycopy()
.
paiDestination
- array to copy topiDestinationStartIndex
- starting index in the destination to start copying topaiSource
- array of integers to copy frompiSourceStartIndex
- starting index in the source to start copying frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(short[] pasDestination, int piDestinationStartIndex, short[] pasSource, int piSourceStartIndex, int piHowMany)
System.arraycopy()
.
pasDestination
- array to copy topiDestinationStartIndex
- starting index in the destination to start copying topasSource
- array of shorts to copy frompiSourceStartIndex
- starting index in the source to start copying frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(long[] palDestination, int piDestinationStartIndex, long[] palSource, int piSourceStartIndex, int piHowMany)
System.arraycopy()
.
palDestination
- array to copy topiDestinationStartIndex
- starting index in the destination to start copying topalSource
- array of longs to copy frompiSourceStartIndex
- starting index in the source to start copying frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(float[] pafDestination, int piDestinationStartIndex, float[] pafSource, int piSourceStartIndex, int piHowMany)
System.arraycopy()
.
pafDestination
- array to copy topiDestinationStartIndex
- starting index in the destination to start copying topafSource
- array of float to copy frompiSourceStartIndex
- starting index in the source to start copying frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(double[] padDestination, int piDestinationStartIndex, double[] padSource, int piSourceStartIndex, int piHowMany)
System.arraycopy()
.
padDestination
- array to copy topiDestinationStartIndex
- starting index in the destination to start copying topadSource
- array of doubles to copy frompiSourceStartIndex
- starting index in the source to start copying frompiHowMany
- N; the number of elements to copy from the source to the destination
java.lang.ArrayIndexOutOfBoundsException
- if one of the indices is out of rangepublic static void copy(java.lang.Object poDestination, int piStartIndex, java.lang.Object poSource, int piHowMany)
copy()
routine is based on System.arraycopy()
.
poDestination
- destination array of copypiStartIndex
- where in the destination array start placing the valuespoSource
- source of elementspiHowMany
- how many elements should be copied from the source to destinationpublic static void copy(java.lang.Object[] paoDestination, int piStartIndex, java.lang.Object[] paoSource, int piHowMany)
copy()
routine is based on System.arraycopy()
for Object arrays.
paoDestination
- destination array of objects to copy topiStartIndex
- where in the destination array start placing the valuespaoSource
- source of Object elementspiHowMany
- how many elements should be copied from the source to destinationpublic static void copy(char[] pacDestination, int piStartIndex, char[] pacSource, int piHowMany)
pacDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topacSource
- array of characters to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(boolean[] pabDestination, int piStartIndex, boolean[] pabSource, int piHowMany)
pabDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topabSource
- array of booleans to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(byte[] patDestination, int piStartIndex, byte[] patSource, int piHowMany)
patDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topatSource
- array of bytes to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(int[] paiDestination, int piStartIndex, int[] paiSource, int piHowMany)
paiDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topaiSource
- array of integers to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(short[] pasDestination, int piStartIndex, short[] pasSource, int piHowMany)
pasDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topasSource
- array of shorts to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(long[] palDestination, int piStartIndex, long[] palSource, int piHowMany)
palDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topalSource
- array of longs to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(float[] pafDestination, int piStartIndex, float[] pafSource, int piHowMany)
pafDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topafSource
- array of floats to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(double[] padDestination, int piStartIndex, double[] padSource, int piHowMany)
padDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topadSource
- array of doubles to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(java.lang.Object[] paoDestination, int piStartIndex, java.lang.Object[] paoSource)
copy()
routine is based on System.arraycopy()
for Object arrays.
paoDestination
- destination array of objects to copy topiStartIndex
- starting index in the destination to start copying topaoSource
- source of object elementspublic static void copy(boolean[] pabDestination, int piStartIndex, boolean[] pabSource)
pabDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topabSource
- array of booleans to copy frompublic static void copy(byte[] patDestination, int piStartIndex, byte[] patSource)
patDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topatSource
- array of bytes to copy frompublic static void copy(char[] pacDestination, int piStartIndex, char[] pacSource)
pacDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topacSource
- array of characters to copy frompublic static void copy(int[] paiDestination, int piStartIndex, int[] paiSource)
paiDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topaiSource
- array of integers to copy frompublic static void copy(short[] pasDestination, int piStartIndex, short[] pasSource)
pasDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topasSource
- array of shorts to copy frompublic static void copy(long[] palDestination, int piStartIndex, long[] palSource)
palDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topalSource
- array of longs to copy frompublic static void copy(float[] pafDestination, int piStartIndex, float[] pafSource)
pafDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topafSource
- array of floats to copy frompublic static void copy(double[] padDestination, int piStartIndex, double[] padSource)
padDestination
- array to copy topiStartIndex
- starting index in the destination to start copying topadSource
- array of doubles to copy frompublic static void copy(java.lang.Object poDestination, java.lang.Object poSource, int piHowMany)
copy()
routine is based on System.arraycopy()
.
poDestination
- destination array of copypoSource
- source of elementspiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(java.lang.Object[] paoDestination, java.lang.Object[] paoSource, int piHowMany)
copy()
routine is based on System.arraycopy()
for Object arrays.
paoDestination
- array to copy topaoSource
- source of object elementspiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(char[] pacDestination, char[] pacSource, int piHowMany)
pacDestination
- array to copy topacSource
- array of characters to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(boolean[] pabDestination, boolean[] pabSource, int piHowMany)
pabDestination
- array to copy topabSource
- array of boolean to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(byte[] patDestination, byte[] patSource, int piHowMany)
patDestination
- array to copy topatSource
- array of bytes to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(short[] pasDestination, short[] pasSource, int piHowMany)
pasDestination
- array to copy topasSource
- array of shorts to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(long[] palDestination, long[] palSource, int piHowMany)
palDestination
- array to copy topalSource
- array of longs to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(float[] pafDestination, float[] pafSource, int piHowMany)
pafDestination
- array to copy topafSource
- array of floats to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(double[] padDestination, double[] padSource, int piHowMany)
padDestination
- array to copy topadSource
- array of doubles to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static void copy(int[] paiDestination, int[] paiSource, int piHowMany)
paiDestination
- array to copy topaiSource
- array of ints to copy frompiHowMany
- N; the number of elements to copy from the source to the destinationpublic static java.lang.Object[] concatenate(java.lang.Object[] paoLHS, java.lang.Object[] paoRHS)
paoLHS
- first array piecepaoRHS
- second array piece
public static java.lang.String[] concatenate(java.lang.String[] pastrLHS, java.lang.String[] pastrRHS)
pastrLHS
- first array piecepastrRHS
- second array piece
public static double[] concatenate(double[] padLHS, double[] padRHS)
padLHS
- first array piecepadRHS
- second array piece
public static boolean[] concatenate(boolean[] pabLHS, boolean[] pabRHS)
pabLHS
- first array piecepabRHS
- second array piece
public static byte[] concatenate(byte[] patLHS, byte[] patRHS)
patLHS
- first array piecepatRHS
- second array piece
public static char[] concatenate(char[] pacLHS, char[] pacRHS)
pacLHS
- first array piecepacRHS
- second array piece
public static int[] concatenate(int[] paiLHS, int[] paiRHS)
paiLHS
- first array piecepaiRHS
- second array piece
public static short[] concatenate(short[] pasLHS, short[] pasRHS)
pasLHS
- first array piecepasRHS
- second array piece
public static float[] concatenate(float[] pafLHS, float[] pafRHS)
pafLHS
- first array piecepafRHS
- second array piece
public static long[] concatenate(long[] palLHS, long[] palRHS)
palLHS
- first array piecepalRHS
- second array piece
public static boolean equals(boolean[] pabArray1, boolean[] pabArray2)
equals()
routine is based on java.util.Arrays.equals()
.
pabArray1
- the first array of booleans to be compared for equalitypabArray2
- the second array of booleans to be compared for equality
true
if the two arrays are equalpublic static boolean equals(byte[] patArray1, byte[] patArray2)
equals()
routine is based on java.util.Arrays.equals()
.
patArray1
- the first array of bytes to be compared for equalitypatArray2
- the second array of bytes to be compared for equality
true
if the two arrays are equalpublic static boolean equals(char[] pacArray1, char[] pacArray2)
equals()
routine is based on java.util.Arrays.equals()
.
pacArray1
- the first array of characters to be compared for equalitypacArray2
- the second array of characters to be compared for equality
true
if the two arrays are equalpublic static boolean equals(double[] padArray1, double[] padArray2)
equals()
routine is based on java.util.Arrays.equals()
.
padArray1
- the first array of doubles to be compared for equalitypadArray2
- the second array of doubles to be compared for equality
true
if the two arrays are equalpublic static boolean equals(float[] pafArray1, float[] pafArray2)
equals()
routine is based on java.util.Arrays.equals()
.
pafArray1
- the first array of floats to be compared for equalitypafArray2
- the second array of floats to be compared for equality
true
if the two arrays are equalpublic static boolean equals(int[] paiArray1, int[] paiArray2)
equals()
routine is based on java.util.Arrays.equals()
.
paiArray1
- the first array of integers to be compared for equalitypaiArray2
- the second array of integers to be compared for equality
true
if the two arrays are equalpublic static boolean equals(long[] palArray1, long[] palArray2)
equals()
routine is based on java.util.Arrays.equals()
.
palArray1
- the first array of longs to be compared for equalitypalArray2
- the second array of longs to be compared for equality
true
if the two arrays are equalpublic static boolean equals(java.lang.Object[] paoArray1, java.lang.Object[] paoArray2)
equals()
routine is based on java.util.Arrays.equals()
.
paoArray1
- the first array of Objects to be compared for equalitypaoArray2
- the second array of Objects to be compared for equality
true
if the two arrays are equalpublic static boolean equals(short[] pasArray1, short[] pasArray2)
equals()
routine is based on java.util.Arrays.equals()
.
pasArray1
- the first array of shorts to be compared for equalitypasArray2
- the second array of shorts to be compared for equality
true
if the two arrays are equalpublic static void fill(boolean[] pabArray, boolean pbValue)
fill()
is based on java.util.Arrays.fill()
.
pabArray
- the array of booleans to be filledpbValue
- the value of boolean to fill into the array of booleanspublic static void fill(boolean[] pabArray, int piFromIndex, int piToIndex, boolean pbValue)
fill()
is based on java.util.Arrays.fill()
.
pabArray
- the array of booleans to be filledpiFromIndex
- the index of the array from here the value to be filledpiToIndex
- the index one after the last element of the array to be filledpbValue
- the value of boolean to fill into the array of booleanspublic static void fill(byte[] patArray, byte ptValue)
fill()
is based on java.util.Arrays.fill()
.
patArray
- the array of bytes to be filledptValue
- the value of byte to fill into the array of bytespublic static void fill(byte[] patArray, int piFromIndex, int piToIndex, byte ptValue)
fill()
is based on java.util.Arrays.fill()
.
patArray
- the array of bytes to be filledpiFromIndex
- the index of the array from here the value to be filledpiToIndex
- the index one after the last element of the array to be filledptValue
- the value of byte to fill into the array of bytespublic static void fill(char[] pacArray, char pcValue)
fill()
is based on java.util.Arrays.fill()
.
pacArray
- the array of characters to be filledpcValue
- the value of character to fill into the array of characterspublic static void fill(char[] pacArray, int piFromIndex, int piToIndex, char pcValue)
fill()
is based on java.util.Arrays.fill()
.
pacArray
- the array of characters to be filledpiFromIndex
- the index of the array from here the value to be filledpiToIndex
- the index one after the last element of the array to be filledpcValue
- the value of character to fill into the array of characterspublic static void fill(double[] padArray, double pdValue)
fill()
is based on java.util.Arrays.fill()
.
padArray
- the array of doubles to be filledpdValue
- the value of double to fill into the array of doublespublic static void fill(double[] padArray, int piFromIndex, int piToIndex, double pdValue)
fill()
is based on java.util.Arrays.fill()
.
padArray
- the array of doubles to be filledpiFromIndex
- the index of the array from here the value to be filledpiToIndex
- the index one after the last element of the array to be filledpdValue
- the value of double to fill into the array of doublespublic static void fill(float[] pafArray, float pfValue)
fill()
is based on java.util.Arrays.fill()
.
pafArray
- the array of floats to be filledpfValue
- the value of float to fill into the array of floatspublic static void fill(float[] pafArray, int piFromIndex, int piToIndex, float pfValue)
fill()
is based on java.util.Arrays.fill()
.
pafArray
- the array of floats to be filledpiFromIndex
- the index of the array from here the value to be filledpiToIndex
- the index one after the last element of the array to be filledpfValue
- the value of float to fill into the array of floatspublic static void fill(int[] paiArray, int piValue)
fill()
is based on java.util.Arrays.fill()
.
paiArray
- the array of integers to be filledpiValue
- the value of integer to fill into the array of integerspublic static void fill(int[] paiArray, int piFromIndex, int piToIndex, int piValue)
fill()
is based on java.util.Arrays.fill()
.
paiArray
- the array of integers to be filledpiFromIndex
- the index of the array from here the value to be filledpiToIndex
- the index one after the last element of the array to be filledpiValue
- the value of integer to fill into the array of integerspublic static void fill(long[] palArray, int piFromIndex, int piToIndex, long plValue)
fill()
is based on java.util.Arrays.fill()
.
palArray
- the array of longs to be filledpiFromIndex
- the index of the array from here the value to be filledpiToIndex
- the index one after the last element of the array to be filledplValue
- the value of long to fill into the array of longspublic static void fill(long[] palArray, long plValue)
fill()
is based on java.util.Arrays.fill()
.
palArray
- the array of longs to be filledplValue
- the value of long to fill into the array of longspublic static void fill(java.lang.Object[] paoArray, int piFromIndex, int piToIndex, java.lang.Object paValue)
fill()
is based on java.util.Arrays.fill()
.
paoArray
- the array to be filledpiFromIndex
- the index of the array from here the value to be filledpiToIndex
- the index one after the last element of the array to be filledpaValue
- the value to fill into the arraypublic static void fill(java.lang.Object[] paoArray, java.lang.Object poValue)
fill()
is based on java.util.Arrays.fill()
.
paoArray
- the array to be filledpoValue
- the value to fill into the arraypublic static void fill(short[] pasArray, int piFromIndex, int piToIndex, short psValue)
fill()
is based on java.util.Arrays.fill()
.
pasArray
- the array of shorts to be filledpiFromIndex
- the index of the array from here the value to be filledpiToIndex
- the index one after the last element of the array to be filledpsValue
- the value of short to fill into the array of shortspublic static void fill(short[] pasArray, short psValue)
fill()
is based on java.util.Arrays.fill()
.
pasArray
- the array of shorts to be filledpsValue
- the value of short to fill into the array of shortspublic static void fillRandom(double[] padArray)
padArray
- the array to fillpublic static void sort(java.lang.Object[] paoArrayToSort, java.util.Comparator poComparator)
paoArrayToSort
- array of objects to sortpoComparator
- comparator object to use while sortingpublic static void sort(double[] padArrayToSort)
padArrayToSort
- array of doubles to sortpublic static void sort(float[] pafArrayToSort)
pafArrayToSort
- array of float to sortpublic static void sort(int[] paiArrayToSort)
paiArrayToSort
- array of integers to sortpublic static void sort(byte[] patArrayToSort)
patArrayToSort
- array of bytes to sortpublic static void sort(char[] pacArrayToSort)
pacArrayToSort
- array of characters to sortpublic static void sort(long[] palArrayToSort)
palArrayToSort
- array of longs to sortpublic static void sort(short[] pasArrayToSort)
pasArrayToSort
- array of shorts to sortpublic static void sort(java.lang.Object[] paoArrayToSort)
paoArrayToSort
- array of objects to sortpublic static java.util.Vector arrayToVector(double[] padData)
padData
- array of double data
public static java.util.Vector arrayToVector(int[] paiData)
paiData
- array of int data
public static java.util.Vector arrayToVector(float[] pafData)
pafData
- array of float data
public static java.util.Vector arrayToVector(short[] pasData)
pasData
- array of short data
public static java.util.Vector arrayToVector(long[] palData)
palData
- array of long data
public static java.util.Vector arrayToVector(char[] pacData)
pacData
- array of character data
public static java.util.Vector arrayToVector(byte[] patData)
patData
- array of byte data
public static java.util.Vector arrayToVector(java.lang.String[] pastrData)
pastrData
- array of String data
public static java.util.Vector arrayToVector(java.lang.Object[] paoData)
paoData
- array of Object data
public static java.lang.String arrayToDelimitedString(java.lang.String[] pastrData, java.lang.String pstrDelimeter)
pastrData
- string data to concatenatepstrDelimeter
- data elements separator
public static java.lang.String arrayToDelimitedString(int[] paiData, java.lang.String pstrDelimeter)
paiData
- int data to appendpstrDelimeter
- data elements separator
public static java.lang.String arrayToDelimitedString(java.lang.Object[] paoData, java.lang.String pstrDelimeter)
paoData
- Object data to appendpstrDelimeter
- data elements separator
public static java.lang.String arrayToDelimitedString(long[] palData, java.lang.String pstrDelimeter)
palData
- long data to appendpstrDelimeter
- data elements separator
public static java.lang.String arrayToDelimitedString(float[] pafData, java.lang.String pstrDelimeter)
pafData
- float data to appendpstrDelimeter
- data elements separator
public static java.lang.String arrayToDelimitedString(double[] padData, java.lang.String pstrDelimeter)
padData
- double data to appendpstrDelimeter
- data elements separator
public static java.lang.String arrayToDelimitedString(byte[] patData, java.lang.String pstrDelimeter)
patData
- byte data to appendpstrDelimeter
- data elements separator
public static java.lang.String arrayToDelimitedString(boolean[] pabData, java.lang.String pstrDelimeter)
pabData
- boolean data to appendpstrDelimeter
- data elements separator
public static java.lang.String arrayToDelimitedString(char[] pacData, java.lang.String pstrDelimiter)
pacData
- character data to appendpstrDelimiter
- data elements separator
public static java.lang.String arrayToString(java.lang.String[] pastrData)
pastrData
- array of String data
public static java.lang.String arrayToString(java.lang.Object[] paoData)
paoData
- array of Object data
public static java.lang.String arrayToString(int[] paiData)
paiData
- array of integer data
public static java.lang.String arrayToString(long[] palData)
palData
- array of long data
public static java.lang.String arrayToString(float[] pafData)
pafData
- array of float data
public static java.lang.String arrayToString(double[] padData)
padData
- array of double data
public static java.lang.String arrayToString(byte[] patData)
patData
- array of byte data
public static java.lang.String arrayToString(boolean[] pabData)
pabData
- array of boolean data
public static java.lang.String arrayToString(char[] pacData)
pacData
- array of character data
public static java.lang.String arrayToCSV(java.lang.String[] pastrData)
pastrData
- array of String data
public static java.lang.String arrayToCSV(java.lang.Object[] paoData)
paoData
- array of Object data
public static java.lang.String arrayToCSV(int[] paiData)
paiData
- array of integer data
public static java.lang.String arrayToCSV(long[] palData)
palData
- array of long data
public static java.lang.String arrayToCSV(float[] pafData)
pafData
- array of float data
public static java.lang.String arrayToCSV(double[] padData)
padData
- array of double data
public static java.lang.String arrayToCSV(byte[] patData)
patData
- array of byte data
public static java.lang.String arrayToCSV(boolean[] pabData)
pabData
- array of boolean data
public static java.lang.String arrayToCSV(char[] pacData)
pacData
- array of character data
public static java.util.List asList(java.lang.Object[] paoObjects)
java.util.Arrays.asList()
.
paoObjects
- array of objects
public static void copy(double[] padDestination, int piDestinationFrom, int[] paiSource, int piSourceFrom, int piHowMany)
padDestination
- destination array of doublespiDestinationFrom
- index in the destination to start place elements atpaiSource
- source array of intspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(double[] padDestination, int[] paiSource, int piHowMany)
padDestination
- destination array of doublespaiSource
- source array of intspiHowMany
- N; how many elements to copypublic static void copy(double[] padDestination, int[] paiSource)
padDestination
- destination array of doublespaiSource
- source array of intspublic static void copy(float[] pafDestination, int piDestinationFrom, int[] paiSource, int piSourceFrom, int piHowMany)
pafDestination
- destination array of floatspiDestinationFrom
- index in the destination to start place elements atpaiSource
- source array of intspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(float[] pafDestination, int[] paiSource, int piHowMany)
pafDestination
- destination array of floatspaiSource
- source array of intspiHowMany
- N; how many elements to copypublic static void copy(float[] pafDestination, int[] paiSource)
pafDestination
- destination array of floatspaiSource
- source array of intspublic static void copy(long[] palDestination, int piDestinationFrom, int[] paiSource, int piSourceFrom, int piHowMany)
palDestination
- destination array of longspiDestinationFrom
- index in the destination to start place elements atpaiSource
- source array of intspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, int[] paiSource, int piHowMany)
palDestination
- destination array of longspaiSource
- source array of intspiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, int[] paiSource)
palDestination
- destination array of longspaiSource
- source array of intspublic static void copy(short[] pasDestination, int piDestinationFrom, int[] paiSource, int piSourceFrom, int piHowMany)
pasDestination
- destination array of shortspiDestinationFrom
- index in the destination to start place elements atpaiSource
- source array of intspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(short[] pasDestination, int[] paiSource, int piHowMany)
pasDestination
- destination array of shortspaiSource
- source array of intspiHowMany
- N; how many elements to copypublic static void copy(short[] pasDestination, int[] paiSource)
pasDestination
- destination array of shortspaiSource
- source array of intspublic static void copy(byte[] patDestination, int piDestinationFrom, int[] paiSource, int piSourceFrom, int piHowMany)
patDestination
- destination array of bytespiDestinationFrom
- index in the destination to start place elements atpaiSource
- source array of intspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(byte[] patDestination, int[] paiSource, int piHowMany)
patDestination
- destination array of bytespaiSource
- source array of intspiHowMany
- N; how many elements to copypublic static void copy(byte[] patDestination, int[] paiSource)
patDestination
- destination array of bytespaiSource
- source array of intspublic static void copy(char[] pacDestination, int piDestinationFrom, int[] paiSource, int piSourceFrom, int piHowMany)
pacDestination
- destination array of characterspiDestinationFrom
- index in the destination to start place elements atpaiSource
- source array of intspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(char[] pacDestination, int[] paiSource, int piHowMany)
pacDestination
- destination array of characterspaiSource
- source array of intspiHowMany
- N; how many elements to copypublic static void copy(char[] pacDestination, int[] paiSource)
pacDestination
- destination array of characterspaiSource
- source array of intspublic static void copy(int[] paiDestination, int piDestinationFrom, double[] padSource, int piSourceFrom, int piHowMany)
paiDestination
- destination array of integerspiDestinationFrom
- index in the destination to start place elements atpadSource
- source array of doublespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(int[] paiDestination, double[] padSource, int piHowMany)
paiDestination
- destination array of integerspadSource
- source array of doublespiHowMany
- N; how many elements to copypublic static void copy(int[] paiDestination, double[] padSource)
paiDestination
- destination array of intspadSource
- source array of doublespublic static void copy(char[] pacDestination, int piDestinationFrom, double[] padSource, int piSourceFrom, int piHowMany)
pacDestination
- destination array of characterspiDestinationFrom
- index in the destination to start place elements atpadSource
- source array of doublespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(char[] pacDestination, double[] padSource, int piHowMany)
pacDestination
- destination array of characterspadSource
- source array of doublespiHowMany
- N; how many elements to copypublic static void copy(char[] pacDestination, double[] padSource)
pacDestination
- destination array of characterspadSource
- source array of doublespublic static void copy(byte[] patDestination, int piDestinationFrom, double[] padSource, int piSourceFrom, int piHowMany)
patDestination
- destination array of bytespiDestinationFrom
- index in the destination to start place elements atpadSource
- source array of doublespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(byte[] patDestination, double[] padSource, int piHowMany)
patDestination
- destination array of bytespadSource
- source array of doublespiHowMany
- N; how many elements to copypublic static void copy(byte[] patDestination, double[] padSource)
patDestination
- destination array of bytespadSource
- source array of doublespublic static void copy(float[] pafDestination, int piDestinationFrom, double[] padSource, int piSourceFrom, int piHowMany)
pafDestination
- destination array of floatspiDestinationFrom
- index in the destination to start place elements atpadSource
- source array of doublespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(float[] pafDestination, double[] padSource, int piHowMany)
pafDestination
- destination array of floatspadSource
- source array of doublespiHowMany
- N; how many elements to copypublic static void copy(float[] pafDestination, double[] padSource)
pafDestination
- destination array of floatspadSource
- source array of doublespublic static void copy(short[] pasDestination, int piDestinationFrom, double[] padSource, int piSourceFrom, int piHowMany)
pasDestination
- destination array of shortspiDestinationFrom
- index in the destination to start place elements atpadSource
- source array of doublespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(short[] pasDestination, double[] padSource, int piHowMany)
pasDestination
- destination array of shortspadSource
- source array of doublespiHowMany
- N; how many elements to copypublic static void copy(short[] pasDestination, double[] padSource)
pasDestination
- destination array of shortspadSource
- source array of doublespublic static void copy(long[] palDestination, int piDestinationFrom, double[] padSource, int piSourceFrom, int piHowMany)
palDestination
- destination array of longspiDestinationFrom
- index in the destination to start place elements atpadSource
- source array of doublespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, double[] padSource, int piHowMany)
palDestination
- destination array of longspadSource
- source array of doublespiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, double[] padSource)
palDestination
- destination array of longspadSource
- source array of doublespublic static void copy(char[] pacDestination, int piDestinationFrom, float[] pafSource, int piSourceFrom, int piHowMany)
pacDestination
- destination array of characterspiDestinationFrom
- index in the destination to start place elements atpafSource
- source array of floatspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(char[] pacDestination, float[] pafSource, int piHowMany)
pacDestination
- destination array of characterspafSource
- source array of floatspiHowMany
- N; how many elements to copypublic static void copy(char[] pacDestination, float[] pafSource)
pacDestination
- destination array of characterspafSource
- source array of floatspublic static void copy(byte[] patDestination, int piDestinationFrom, float[] pafSource, int piSourceFrom, int piHowMany)
patDestination
- destination array of bytespiDestinationFrom
- index in the destination to start place elements atpafSource
- source array of floatspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(byte[] patDestination, float[] pafSource, int piHowMany)
patDestination
- destination array of characterspafSource
- source array of bytespiHowMany
- N; how many elements to copypublic static void copy(byte[] patDestination, float[] pafSource)
patDestination
- destination array of bytespafSource
- source array of floatspublic static void copy(int[] paiDestination, int piDestinationFrom, float[] pafSource, int piSourceFrom, int piHowMany)
paiDestination
- destination array of integerspiDestinationFrom
- index in the destination to start place elements atpafSource
- source array of floatspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(int[] paiDestination, float[] pafSource, int piHowMany)
paiDestination
- destination array of integerspafSource
- source array of floatspiHowMany
- N; how many elements to copypublic static void copy(int[] paiDestination, float[] pafSource)
paiDestination
- destination array of integerspafSource
- source array of floatspublic static void copy(short[] pasDestination, int piDestinationFrom, float[] pafSource, int piSourceFrom, int piHowMany)
pasDestination
- destination array of shortspiDestinationFrom
- index in the destination to start place elements atpafSource
- source array of floatspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(short[] pasDestination, float[] pafSource, int piHowMany)
pasDestination
- destination array of shortspafSource
- source array of floatspiHowMany
- N; how many elements to copypublic static void copy(short[] pasDestination, float[] pafSource)
pasDestination
- destination array of shortspafSource
- source array of floatspublic static void copy(long[] palDestination, int piDestinationFrom, float[] pafSource, int piSourceFrom, int piHowMany)
palDestination
- destination array of longspiDestinationFrom
- index in the destination to start place elements atpafSource
- source array of floatspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, float[] pafSource, int piHowMany)
palDestination
- destination array of longspafSource
- source array of floatspiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, float[] pafSource)
palDestination
- destination array of longspafSource
- source array of floatspublic static void copy(double[] padDestination, int piDestinationFrom, float[] pafSource, int piSourceFrom, int piHowMany)
padDestination
- destination array of doublespiDestinationFrom
- index in the destination to start place elements atpafSource
- source array of floatspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(double[] padDestination, float[] pafSource, int piHowMany)
padDestination
- destination array of doublespafSource
- source array of floatspiHowMany
- N; how many elements to copypublic static void copy(double[] padDestination, float[] pafSource)
padDestination
- destination array of doublespafSource
- source array of floatspublic static void copy(double[] padDestination, int piDestinationFrom, short[] pasSource, int piSourceFrom, int piHowMany)
padDestination
- destination array of doublespiDestinationFrom
- index in the destination to start place elements atpasSource
- source array of shortspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(double[] padDestination, short[] pasSource, int piHowMany)
padDestination
- destination array of doublespasSource
- source array of shortspiHowMany
- N; how many elements to copypublic static void copy(double[] padDestination, short[] pasSource)
padDestination
- destination array of doublespasSource
- source array of shortspublic static void copy(char[] pacDestination, int piDestinationFrom, short[] pasSource, int piSourceFrom, int piHowMany)
pacDestination
- destination array of characterspiDestinationFrom
- index in the destination to start place elements atpasSource
- source array of shortspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(char[] pacDestination, short[] pasSource, int piHowMany)
pacDestination
- destination array of characterspasSource
- source array of shortspiHowMany
- N; how many elements to copypublic static void copy(char[] pacDestination, short[] pasSource)
pacDestination
- destination array of characterspasSource
- source array of shortspublic static void copy(byte[] patDestination, int piDestinationFrom, short[] pasSource, int piSourceFrom, int piHowMany)
patDestination
- destination array of bytespiDestinationFrom
- index in the destination to start place elements atpasSource
- source array of shortspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(byte[] patDestination, short[] pasSource, int piHowMany)
patDestination
- destination array of bytespasSource
- source array of shortspiHowMany
- N; how many elements to copypublic static void copy(byte[] patDestination, short[] pasSource)
patDestination
- destination array of bytespasSource
- source array of shortspublic static void copy(int[] paiDestination, int piDestinationFrom, short[] pasSource, int piSourceFrom, int piHowMany)
paiDestination
- destination array of integerspiDestinationFrom
- index in the destination to start place elements atpasSource
- source array of shortspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(int[] paiDestination, short[] pasSource, int piHowMany)
paiDestination
- destination array of integerspasSource
- source array of shortspiHowMany
- N; how many elements to copypublic static void copy(int[] paiDestination, short[] pasSource)
paiDestination
- destination array of integerspasSource
- source array of shortspublic static void copy(float[] pafDestination, int piDestinationFrom, short[] pasSource, int piSourceFrom, int piHowMany)
pafDestination
- destination array of floatspiDestinationFrom
- index in the destination to start place elements atpasSource
- source array of shortspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(float[] pafDestination, short[] pasSource, int piHowMany)
pafDestination
- destination array of floatspasSource
- source array of shortspiHowMany
- N; how many elements to copypublic static void copy(float[] pafDestination, short[] pasSource)
pafDestination
- destination array of floatspasSource
- source array of shortspublic static void copy(long[] palDestination, int piDestinationFrom, short[] pasSource, int piSourceFrom, int piHowMany)
palDestination
- destination array of longspiDestinationFrom
- index in the destination to start place elements atpasSource
- source array of shortspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, short[] pasSource, int piHowMany)
palDestination
- destination array of longspasSource
- source array of shortspiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, short[] pasSource)
palDestination
- destination array of longspasSource
- source array of shortspublic static void copy(long[] palDestination, int piDestinationFrom, byte[] patSource, int piSourceFrom, int piHowMany)
palDestination
- destination array of longspiDestinationFrom
- index in the destination to start place elements atpatSource
- source array of bytespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, byte[] patSource, int piHowMany)
palDestination
- destination array of longspatSource
- source array of bytespiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, byte[] patSource)
palDestination
- destination array of longspatSource
- source array of bytespublic static void copy(double[] padDestination, int piDestinationFrom, byte[] patSource, int piSourceFrom, int piHowMany)
padDestination
- destination array of doublespiDestinationFrom
- index in the destination to start place elements atpatSource
- source array of bytespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(double[] padDestination, byte[] patSource, int piHowMany)
padDestination
- destination array of doublespatSource
- source array of bytespiHowMany
- N; how many elements to copypublic static void copy(double[] padDestination, byte[] patSource)
padDestination
- destination array of doublespatSource
- source array of bytespublic static void copy(short[] pasDestination, int piDestinationFrom, byte[] patSource, int piSourceFrom, int piHowMany)
pasDestination
- destination array of shortspiDestinationFrom
- index in the destination to start place elements atpatSource
- source array of bytespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(short[] pasDestination, byte[] patSource, int piHowMany)
pasDestination
- destination array of shortspatSource
- source array of bytespiHowMany
- N; how many elements to copypublic static void copy(short[] pasDestination, byte[] patSource)
pasDestination
- destination array of shortspatSource
- source array of bytespublic static void copy(float[] pafDestination, int piDestinationFrom, byte[] patSource, int piSourceFrom, int piHowMany)
pafDestination
- destination array of floatspiDestinationFrom
- index in the destination to start place elements atpatSource
- source array of bytespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(float[] pafDestination, byte[] patSource, int piHowMany)
pafDestination
- destination array of floatspatSource
- source array of bytespiHowMany
- N; how many elements to copypublic static void copy(float[] pafDestination, byte[] patSource)
pafDestination
- destination array of floatspatSource
- source array of bytespublic static void copy(char[] pacDestination, int piDestinationFrom, byte[] patSource, int piSourceFrom, int piHowMany)
pacDestination
- destination array of characterspiDestinationFrom
- index in the destination to start place elements atpatSource
- source array of bytespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(char[] pacDestination, byte[] patSource, int piHowMany)
pacDestination
- destination array of characterspatSource
- source array of bytespiHowMany
- N; how many elements to copypublic static void copy(char[] pacDestination, byte[] patSource)
pacDestination
- destination array of characterspatSource
- source array of bytespublic static void copy(int[] paiDestination, int piDestinationFrom, byte[] patSource, int piSourceFrom, int piHowMany)
paiDestination
- destination array of integerspiDestinationFrom
- index in the destination to start place elements atpatSource
- source array of bytespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(int[] paiDestination, byte[] patSource, int piHowMany)
paiDestination
- destination array of integerspatSource
- source array of bytespiHowMany
- N; how many elements to copypublic static void copy(int[] paiDestination, byte[] patSource)
paiDestination
- destination array of integerspatSource
- source array of bytespublic static void copy(int[] paiDestination, int piDestinationFrom, char[] pacSource, int piSourceFrom, int piHowMany)
paiDestination
- destination array of integerspiDestinationFrom
- index in the destination to start place elements atpacSource
- source array of characterspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(int[] paiDestination, char[] pacSource, int piHowMany)
paiDestination
- destination array of integerspacSource
- source array of characterspiHowMany
- N; how many elements to copypublic static void copy(int[] paiDestination, char[] pacSource)
paiDestination
- destination array of integerspacSource
- source array of characterspublic static void copy(byte[] patDestination, int piDestinationFrom, char[] pacSource, int piSourceFrom, int piHowMany)
patDestination
- destination array of bytespiDestinationFrom
- index in the destination to start place elements atpacSource
- source array of characterspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(byte[] patDestination, char[] pacSource, int piHowMany)
patDestination
- destination array of bytespacSource
- source array of characterspiHowMany
- N; how many elements to copypublic static void copy(byte[] patDestination, char[] pacSource)
patDestination
- destination array of bytespacSource
- source array of characterspublic static void copy(short[] pasDestination, int piDestinationFrom, char[] pacSource, int piSourceFrom, int piHowMany)
pasDestination
- destination array of shortspiDestinationFrom
- index in the destination to start place elements atpacSource
- source array of characterspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(short[] pasDestination, char[] pacSource, int piHowMany)
pasDestination
- destination array of shortspacSource
- source array of characterspiHowMany
- N; how many elements to copypublic static void copy(short[] pasDestination, char[] pacSource)
pasDestination
- destination array of shortspacSource
- source array of characterspublic static void copy(long[] palDestination, int piDestinationFrom, char[] pacSource, int piSourceFrom, int piHowMany)
palDestination
- destination array of longspiDestinationFrom
- index in the destination to start place elements atpacSource
- source array of characterspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, char[] pacSource, int piHowMany)
palDestination
- destination array of longspacSource
- source array of characterspiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, char[] pacSource)
palDestination
- destination array of longspacSource
- source array of characterspublic static void copy(float[] pafDestination, int piDestinationFrom, char[] pacSource, int piSourceFrom, int piHowMany)
pafDestination
- destination array of floatspiDestinationFrom
- index in the destination to start place elements atpacSource
- source array of characterspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(float[] pafDestination, char[] pacSource, int piHowMany)
pafDestination
- destination array of floatspacSource
- source array of characterspiHowMany
- N; how many elements to copypublic static void copy(float[] pafDestination, char[] pacSource)
pafDestination
- destination array of floatspacSource
- source array of characterspublic static void copy(double[] padDestination, int piDestinationFrom, char[] pacSource, int piSourceFrom, int piHowMany)
padDestination
- destination array of doublespiDestinationFrom
- index in the destination to start place elements atpacSource
- source array of characterspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(double[] padDestination, char[] pacSource, int piHowMany)
padDestination
- destination array of doublespacSource
- source array of characterspiHowMany
- N; how many elements to copypublic static void copy(double[] padDestination, char[] pacSource)
padDestination
- destination array of doublespacSource
- source array of characterspublic static void copy(java.lang.String[] pstrDestination, int piDestinationFrom, int[] paiSource, int piSourceFrom, int piHowMany)
pstrDestination
- destination array of StringspiDestinationFrom
- index in the destination to start place elements atpaiSource
- source array of intspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, int[] paiSource, int piHowMany)
pstrDestination
- destination array of StringspaiSource
- source array of intspiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, int[] paiSource)
pstrDestination
- destination array of StringspaiSource
- source array of intspublic static void copy(java.lang.String[] pstrDestination, int piDestinationFrom, char[] pacSource, int piSourceFrom, int piHowMany)
pstrDestination
- destination array of StringspiDestinationFrom
- index in the destination to start place elements atpacSource
- source array of charspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, char[] pacSource, int piHowMany)
pstrDestination
- destination array of StringspacSource
- source array of charspiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, char[] pacSource)
pstrDestination
- destination array of StringspacSource
- source array of charspublic static void copy(java.lang.String[] pstrDestination, int piDestinationFrom, byte[] patSource, int piSourceFrom, int piHowMany)
pstrDestination
- destination array of StringspiDestinationFrom
- index in the destination to start place elements atpatSource
- source array of bytespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, byte[] patSource, int piHowMany)
pstrDestination
- destination array of StringspatSource
- source array of bytespiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, byte[] patSource)
pstrDestination
- destination array of StringspatSource
- source array of bytespublic static void copy(java.lang.String[] pstrDestination, int piDestinationFrom, short[] pasSource, int piSourceFrom, int piHowMany)
pstrDestination
- destination array of StringspiDestinationFrom
- index in the destination to start place elements atpasSource
- source array of shortspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, short[] patSource, int piHowMany)
pstrDestination
- destination array of StringspatSource
- source array of shortspiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, short[] pasSource)
pstrDestination
- destination array of StringspasSource
- source array of shortspublic static void copy(java.lang.String[] pstrDestination, int piDestinationFrom, long[] palSource, int piSourceFrom, int piHowMany)
pstrDestination
- destination array of StringspiDestinationFrom
- index in the destination to start place elements atpalSource
- source array of longspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, long[] palSource, int piHowMany)
pstrDestination
- destination array of StringspalSource
- source array of longspiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, long[] palSource)
pstrDestination
- destination array of StringspalSource
- source array of longspublic static void copy(java.lang.String[] pstrDestination, int piDestinationFrom, float[] pafSource, int piSourceFrom, int piHowMany)
pstrDestination
- destination array of StringspiDestinationFrom
- index in the destination to start place elements atpafSource
- source array of floatspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, float[] pafSource, int piHowMany)
pstrDestination
- destination array of StringspafSource
- source array of floatspiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, float[] pafSource)
pstrDestination
- destination array of StringspafSource
- source array of floatspublic static void copy(java.lang.String[] pstrDestination, int piDestinationFrom, double[] padSource, int piSourceFrom, int piHowMany)
pstrDestination
- destination array of StringspiDestinationFrom
- index in the destination to start place elements atpadSource
- source array of doublespiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, double[] padSource, int piHowMany)
pstrDestination
- destination array of StringspadSource
- source array of doublespiHowMany
- N; how many elements to copypublic static void copy(java.lang.String[] pstrDestination, double[] padSource)
pstrDestination
- destination array of StringspadSource
- source array of doublespublic static void copy(double[] padDestination, int piDestinationFrom, java.lang.String[] pastrSource, int piSourceFrom, int piHowMany)
padDestination
- destination array of doublespiDestinationFrom
- index in the destination to start place elements atpastrSource
- source array of StringspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copy
java.lang.NumberFormatException
- if one of the Strings doesn't have a properly formatted numberpublic static void copy(double[] padDestination, java.lang.String[] pastrSource, int piHowMany)
padDestination
- destination array of doublespastrSource
- source array of StringspiHowMany
- N; how many elements to copypublic static void copy(double[] padDestination, java.lang.String[] pastrSource)
padDestination
- destination array of doublespastrSource
- source array of Stringspublic static void copy(float[] pafDestination, int piDestinationFrom, java.lang.String[] pastrSource, int piSourceFrom, int piHowMany)
pafDestination
- destination array of floatspiDestinationFrom
- index in the destination to start place elements atpastrSource
- source array of StringspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copy
java.lang.NumberFormatException
- if one of the Strings doesn't have a properly formatted numberpublic static void copy(float[] pafDestination, java.lang.String[] pastrSource, int piHowMany)
pafDestination
- destination array of floatspastrSource
- source array of StringspiHowMany
- N; how many elements to copypublic static void copy(float[] pafDestination, java.lang.String[] pastrSource)
pafDestination
- destination array of floatspastrSource
- source array of Stringspublic static void copy(long[] palDestination, int piDestinationFrom, java.lang.String[] pastrSource, int piSourceFrom, int piHowMany)
palDestination
- destination array of longspiDestinationFrom
- index in the destination to start place elements atpastrSource
- source array of StringspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copy
java.lang.NumberFormatException
- if one of the Strings doesn't have a properly formatted numberpublic static void copy(long[] palDestination, java.lang.String[] pastrSource, int piHowMany)
palDestination
- destination array of longspastrSource
- source array of StringspiHowMany
- N; how many elements to copypublic static void copy(long[] palDestination, java.lang.String[] pastrSource)
palDestination
- destination array of longspastrSource
- source array of Stringspublic static void copy(int[] paiDestination, int piDestinationFrom, java.lang.String[] pastrSource, int piSourceFrom, int piHowMany)
paiDestination
- destination array of integerspiDestinationFrom
- index in the destination to start place elements atpastrSource
- source array of StringspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copy
java.lang.NumberFormatException
- if one of the Strings doesn't have a properly formatted numberpublic static void copy(int[] paiDestination, java.lang.String[] pastrSource, int piHowMany)
paiDestination
- destination array of integerspastrSource
- source array of StringspiHowMany
- N; how many elements to copypublic static void copy(int[] paiDestination, java.lang.String[] pastrSource)
paiDestination
- destination array of integerspastrSource
- source array of Stringspublic static void copy(short[] pasDestination, int piDestinationFrom, java.lang.String[] pastrSource, int piSourceFrom, int piHowMany)
pasDestination
- destination array of shortspiDestinationFrom
- index in the destination to start place elements atpastrSource
- source array of StringspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copy
java.lang.NumberFormatException
- if one of the Strings doesn't have a properly formatted numberpublic static void copy(short[] pasDestination, java.lang.String[] pastrSource, int piHowMany)
pasDestination
- destination array of shortspastrSource
- source array of StringspiHowMany
- N; how many elements to copypublic static void copy(short[] pasDestination, java.lang.String[] pastrSource)
pasDestination
- destination array of shortspastrSource
- source array of Stringspublic static void copy(byte[] patDestination, int piDestinationFrom, java.lang.String[] pastrSource, int piSourceFrom, int piHowMany)
patDestination
- destination array of bytespiDestinationFrom
- index in the destination to start place elements atpastrSource
- source array of StringspiSourceFrom
- index in the source to start take elements frompiHowMany
- N; how many elements to copy
java.lang.NumberFormatException
- if one of the Strings doesn't have a properly formatted numberpublic static void copy(byte[] patDestination, java.lang.String[] pastrSource, int piHowMany)
patDestination
- destination array of bytespastrSource
- source array of StringspiHowMany
- N; how many elements to copypublic static void copy(byte[] patDestination, java.lang.String[] pastrSource)
patDestination
- destination array of bytespastrSource
- source array of Stringspublic static int binarySearch(float[] pafArray, float pfValue)
binarySearch()
routine is based on java.util.Arrays.binarySearch()
.
pafArray
- the array of floats to be searchedpfValue
- the value of float to be searched in the array of floats
public static int binarySearch(double[] padArray, double pdValue)
binarySearch()
routine is based on java.util.Arrays.binarySearch()
.
padArray
- the array of doubles to be searchedpdValue
- the value of double to be searched in the array of doubles
public static int binarySearch(short[] pasArray, short psValue)
binarySearch()
routine is based on java.util.Arrays.binarySearch()
.
pasArray
- the array of shorts to be searchedpsValue
- the value of shorts to be searched in the array of shorts
public static int binarySearch(int[] paiArray, int piValue)
binarySearch()
routine is based on java.util.Arrays.binarySearch()
.
paiArray
- the array of integers to be searchedpiValue
- the value of integer to be searched in the array of integers
public static int binarySearch(byte[] patArray, byte ptValue)
binarySearch()
routine is based on java.util.Arrays.binarySearch()
.
patArray
- the array of bytes to be searchedptValue
- the value of byte to be searched in the array of bytes
public static int binarySearch(char[] pacArray, char pcValue)
binarySearch()
routine is based on java.util.Arrays.binarySearch()
.
pacArray
- the array of characters to be searchedpcValue
- the value of character to be searched in the array of characters
public static int binarySearch(java.lang.Object[] paoArray, java.lang.Object poValue)
binarySearch()
routine is based on java.util.Arrays.binarySearch()
.
paoArray
- the array of objects to be searchedpoValue
- the value of object to be searched in the array of objects
java.lang.ClassCastException
- if the type of the searched value is not match the type of the arraypublic static int binarySearch(java.lang.Object[] paoArray, java.lang.Object poValue, java.util.Comparator poComparator)
binarySearch()
routine is based on java.util.Arrays.binarySearch()
.
paoArray
- the array of objects to be searchedpoValue
- the value of object to be searched in the array of objectspoComparator
- the comparator to decide the order of the array
java.lang.ClassCastException
- if the type of the searched value is not match the type of the arraypublic static java.lang.String getMARFSourceCodeRevision()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |