JMU
logoChemicalc.png
The StringUtilities Class


Introduction

Purpose: A utility class for working with String and String[] objects.

Details
The includes(String[], String) Method:
This class must implement the following method:
    /**
     * 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