Enthält die Methode Groß- und Kleinschreibung ohne größere Codeänderungen?

Gibt es eine Möglichkeit, die Groß- / Kleinschreibung für die contains- () -Methode zu ignorieren, aber gleichzeitig das Code-Snippet mehr oder weniger gleich zu lassen?

/**
 * This method returns a list of all words from the dictionary that include the given substring.
 *
 */
public ArrayList<String> wordsContaining(String text)
{
    int index = 0;
    ArrayList<String> wordsContaining = new ArrayList<String>();      
    while(index<words.size())
    {
        if((words.get(index).contains(text)))
        {
            wordsContaining.add(words.get(index));
        }
        index++;
    }
    return wordsContaining;
}

hier ist die ganze SpellChecker-Klasse:

public class SpellChecker
{
     private ArrayList<String> words;
     private DictReader reader;

    /**
     * Constructor for objects of class SpellChecker
     */

public SpellChecker()
{
    reader = new DictReader("words.txt");
    words = reader.getDictionary();
}

/**
 * This method returns the number of words in the dictionary.
 * 
 */
public int numberOfWords()
{
    return words.size();
}

/**
 * This method returns true, if (and only if) the given word is found in the dictionary.
 *
 */
public boolean isKnownWord(String word)
{
    int index =0;
    while(index < words.size())
    {
        if(words.get(index).equals(word))
        {
            return true;
        }
        index++;
    }
    return false;
}

/**
 * This method returns true if (and only if) all words in the given wordList are found in the dictionary.
 */
public boolean allKnown(ArrayList<String> wordList)
{
   for(String word : wordList)
   {
       if(isKnownWord(word))
       {
           return true;
        }

   }
    return false;
}

/**
 * This method tests the allKnown method.
 */
public boolean testAllKnown()
{
    ArrayList<String> testWords = new ArrayList<String>();
    testWords.add("Abu");
    testWords.add("Chou");
    if(allKnown(testWords))
    {
        return true;
    }
    else
    {
        return false;
    }

}

/**
 * This method returns a list of all words from the dictionary that start with the given prefix.
 *
 */
public ArrayList<String> wordsStartingWith(String prefix)
{
    int index = 0;
    ArrayList<String> wordsStartingWith = new ArrayList<String>();
    while(index<words.size())
    {
        if(words.get(index).startsWith(prefix))
        {
            wordsStartingWith.add(words.get(index));

        }
        index++;
    }
    return wordsStartingWith;
}    

/**
 * This method returns a list of all words from the dictionary that include the given substring.
 *
 */
public ArrayList<String> wordsContaining(String text)
{
    int index = 0;
    ArrayList<String> wordsContaining = new ArrayList<String>();      
    while(index<words.size())
    {
        if((words.get(index).contains(text)))
        {
            wordsContaining.add(words.get(index));
        }
        index++;
    }
    return wordsContaining;
}

Die DicReader-Klasse nimmt einfach eine bestimmte Textdatei und "macht" daraus ein Wörterbuch. Ich werde es nur für den Fall aufstellen:

public class DictReader
{
  private ArrayList<String> dict;
  private String filename;

  /**
   * Create a DictReader instance from a file.
   */

public DictReader(String filename)
{
    loadDictionary(filename);
    this.filename = filename;
}

/**
 * Return the dictionary as a list of words.
 */
public ArrayList<String> getDictionary()
{
    return dict;
}

/**
 * Accept a new dictionary and save it under the same name. Use the new
 * one as our dictionary from now on.
 */
public void save(ArrayList<String> dictionary)
{
    try {
        FileWriter out = new FileWriter(filename);
        for(String word : dictionary) {
            out.write(word);
            out.write("\n");
        }
        out.close();
        dict = dictionary;
    }
    catch(IOException exc) {
        System.out.println("Error writing dictionary file: " + exc);
    }
}

/**
 * Load the dictionary from disk and store it in the 'dict' field.
 */
private void loadDictionary(String filename)
{
    dict = new ArrayList<String>();

    try {
        BufferedReader in = new BufferedReader(new FileReader(filename));
        String word = in.readLine();
        while(word != null) {
            dict.add(word);
            word = in.readLine();
        }
        in.close();
    }
    catch(IOException exc) {
        System.out.println("Error reading dictionary file: " + exc);
    }
}
}

Die Frage ist also, ob ich überprüfen muss, ob ein bestimmtes Wort ein Text-Snippet / eine Teilzeichenfolge enthält, bei dem / der ich "Text" genannt habe. Ich habe einige Nachforschungen angestellt und festgestellt, dass zum Entfernen der Groß- und Kleinschreibung eine bestimmte Bibliothek importiert werden muss. Die Syntax für die neue Methode contain ist unterschiedlich und funktioniert nicht mit dem, was ich derzeit als Code habe. Ich habe mich dann gefragt, ob es eine Möglichkeit gibt, contain () unabhängig von Groß- und Kleinschreibung zu machen, aber die Struktur des Codes beizubehalten.