
Purpose: A utility class for working with String and String[] objects.
    /**
     * Returns true if a String[] contains a given String
     * as an element
     *
     * @param array   The String[] to check
     * @param s       The String to search for
     */
    public static boolean includes(String[] array, String s)
    {
    }
    
Copyright 2013