Uses of Class
com.ibm.are.common.StringList

Packages that use StringList
com.ibm.are.common Generalized classes and utilities for use anywhere in ARE
 
 

Uses of StringList in com.ibm.are.common
 

Methods in com.ibm.are.common that return StringList
 StringList StringList.findElementsContainingText(java.lang.String theText)
          Searches the list of strings for the specified text.
protected  StringList StringList.findElementsContainingText(java.lang.String theText, boolean ignoreCase)
          Implementation of the findElementsContainingText and findElementsContainingTextIgnoreCase methods.
 StringList StringList.findElementsContainingTextIgnoreCase(java.lang.String theText)
          Searches the list of strings for the specified text.
static StringList StringList.parse(java.lang.String str)
          Parses the given string and creates a StringList object that contains all of the items represented by the string.
 

Methods in com.ibm.are.common with parameters of type StringList
 void DirectoryTreeBuilder.addExcludeDirectories(StringList dirList)
          Adds a list of directories that will NOT be traversed by the iterator
 boolean StringList.containsAllIgnoreCase(StringList otherList)
          Searches the list of strings to see if the list contains all of the items in given list of strings.
 boolean StringList.containsIgnoreCase(StringList otherList)
          Check if the list of strings contains every string in the given list.
 boolean StringList.equalsIgnoreCase(StringList otherList)
          Compare whether the given list contains all the strings in this list and this list contains all the strings in the given list, regardless of the element order.
 void StringList.removeAllIgnoreCase(StringList otherList)
          Removes all items in the given list from the list of strings.
 int CommandRunner.run(StringList stdoutOutput, StringList stderrOutput)
          Runs the command.
 int CommandRunner.run(StringList stdoutOutput, StringList stderrOutput, java.lang.String charSetName)
          Runs the command.
protected  int CommandRunner.runAndLog(StringList stdoutOutput, StringList stderrOutput)
          Runs the command, and uses a previously specified logger to log information.