| java.lang.Object de.mcs.utils.ArrayUtils
ArrayUtils | final public class ArrayUtils (Code) | | Implements some utils for array hanling.
author: w.klaas |
Method Summary | |
public static boolean | equals(byte[] id, byte[] id2, int len) checking if 2 arrays are equal up to len length.
Parameters: id - first array Parameters: id2 - second array Parameters: len - len to check. | public static String[] | stringToArray(String value) converting a Strign into an array. |
equals | public static boolean equals(byte[] id, byte[] id2, int len)(Code) | | checking if 2 arrays are equal up to len length.
Parameters: id - first array Parameters: id2 - second array Parameters: len - len to check. true if the array are equal, otherwisefalse |
stringToArray | public static String[] stringToArray(String value)(Code) | | converting a Strign into an array. Format is the internal format of the
toString methode of a array.
Parameters: value - the string to convert. String[] |
|
|