| java.lang.Object org.sakaiproject.util.ArrayUtil
ArrayUtil | public class ArrayUtil (Code) | |
ArrayUtil collects together some Array utility methods.
|
Method Summary | |
public static boolean | contains(Object[] target, Object search) Search for an object in an array.
Parameters: target - The target array Parameters: search - The object to search for. |
contains | public static boolean contains(Object[] target, Object search)(Code) | | Search for an object in an array.
Parameters: target - The target array Parameters: search - The object to search for. true if search is "in" (equal to any object in) the target, false if not |
|
|