- capitalise(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Capitalise a String.
- capitaliseAllWords(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Capitalise all the words in a String.
- capitalizeFirstLetter(String) - Static method in class org.apache.maven.it.util.StringUtils
-
- catPath(String, String) - Static method in class org.apache.maven.it.util.FileUtils
-
Will concatenate 2 paths.
- center(String, int) - Static method in class org.apache.maven.it.util.StringUtils
-
Center a String in a larger String of size n
.
- center(String, int, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Center a String in a larger String of size n
.
- chomp(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Remove the last newline, and everything after it from a String.
- chomp(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Remove the last value of a supplied String, and everything after
it from a String.
- chompLast(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Remove a newline if and only if it is at the end
of the supplied String.
- chompLast(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Remove a value if and only if the String ends with that value.
- chop(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Remove the last character from a String.
- chopNewline(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Remove \n
from end of a String if it's there.
- clean(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Removes control characters, including whitespace, from both
ends of this String, handling null
by returning
an empty String.
- cleanDirectory(String) - Static method in class org.apache.maven.it.util.FileUtils
-
Clean a directory without deleting it.
- cleanDirectory(File) - Static method in class org.apache.maven.it.util.FileUtils
-
Clean a directory without deleting it.
- clear() - Method in class org.apache.maven.it.util.cli.Commandline
-
Clear out the whole command line.
- clearArgs() - Method in class org.apache.maven.it.util.cli.Commandline
-
Clear out the arguments but leave the executable in place for another operation.
- clone() - Method in class org.apache.maven.it.util.cli.Commandline
-
- close() - Method in class org.apache.maven.it.util.cli.StreamFeeder
-
- close() - Method in class org.apache.maven.it.util.cli.StreamPumper
-
- close(InputStream) - Static method in class org.apache.maven.it.util.IOUtil
-
Closes the input stream.
- close(OutputStream) - Static method in class org.apache.maven.it.util.IOUtil
-
Closes the output stream.
- close(Reader) - Static method in class org.apache.maven.it.util.IOUtil
-
Closes the reader.
- close(Writer) - Static method in class org.apache.maven.it.util.IOUtil
-
Closes the writer.
- CmdShell - Class in org.apache.maven.it.util.cli.shell
-
Implementation to call the CMD Shell present on Windows NT, 2000 and XP
- CmdShell() - Constructor for class org.apache.maven.it.util.cli.shell.CmdShell
-
- Commandline - Class in org.apache.maven.it.util.cli
-
Commandline objects help handling command lines specifying processes to
execute.
- Commandline(String) - Constructor for class org.apache.maven.it.util.cli.Commandline
-
Create a new command line object.
- Commandline() - Constructor for class org.apache.maven.it.util.cli.Commandline
-
Create a new command line object.
- Commandline.Argument - Class in org.apache.maven.it.util.cli
-
Used for nested xml command line definitions.
- Commandline.Argument() - Constructor for class org.apache.maven.it.util.cli.Commandline.Argument
-
- Commandline.Marker - Class in org.apache.maven.it.util.cli
-
Class to keep track of the position of an Argument.
- CommandLineException - Exception in org.apache.maven.it.util.cli
-
- CommandLineException(String) - Constructor for exception org.apache.maven.it.util.cli.CommandLineException
-
- CommandLineException(String, Throwable) - Constructor for exception org.apache.maven.it.util.cli.CommandLineException
-
- CommandLineUtils - Class in org.apache.maven.it.util.cli
-
- CommandLineUtils() - Constructor for class org.apache.maven.it.util.cli.CommandLineUtils
-
- CommandLineUtils.StringStreamConsumer - Class in org.apache.maven.it.util.cli
-
- CommandLineUtils.StringStreamConsumer() - Constructor for class org.apache.maven.it.util.cli.CommandLineUtils.StringStreamConsumer
-
- CommandShell - Class in org.apache.maven.it.util.cli.shell
-
Implementation to call the Command.com Shell present on Windows 95, 98 and Me
- CommandShell() - Constructor for class org.apache.maven.it.util.cli.shell.CommandShell
-
- concatenate(Object[]) - Static method in class org.apache.maven.it.util.StringUtils
-
Concatenates elements of an array into a single String.
- consumeLine(String) - Method in class org.apache.maven.it.util.cli.CommandLineUtils.StringStreamConsumer
-
- consumeLine(String) - Method in class org.apache.maven.it.util.cli.DefaultConsumer
-
- consumeLine(String) - Method in interface org.apache.maven.it.util.cli.StreamConsumer
-
Called when the StreamPumper pumps a line from the Stream.
- consumeLine(String) - Method in class org.apache.maven.it.util.cli.WriterStreamConsumer
-
- contentEquals(File, File) - Static method in class org.apache.maven.it.util.FileUtils
-
Compare the contents of two files to determine if they are equal or not.
- contentEquals(InputStream, InputStream) - Static method in class org.apache.maven.it.util.IOUtil
-
Compare the contents of two Streams to determine if they are equal or not.
- copy(InputStream, OutputStream) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy bytes from an InputStream
to an OutputStream
.
- copy(InputStream, OutputStream, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy bytes from an InputStream
to an OutputStream
.
- copy(Reader, Writer) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy chars from a Reader
to a Writer
.
- copy(Reader, Writer, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy chars from a Reader
to a Writer
.
- copy(InputStream, Writer) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy and convert bytes from an InputStream
to chars on a
Writer
.
- copy(InputStream, Writer, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy and convert bytes from an InputStream
to chars on a
Writer
.
- copy(InputStream, Writer, String) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy and convert bytes from an InputStream
to chars on a
Writer
, using the specified encoding.
- copy(InputStream, Writer, String, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy and convert bytes from an InputStream
to chars on a
Writer
, using the specified encoding.
- copy(Reader, OutputStream) - Static method in class org.apache.maven.it.util.IOUtil
-
Serialize chars from a Reader
to bytes on an OutputStream
, and
flush the OutputStream
.
- copy(Reader, OutputStream, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Serialize chars from a Reader
to bytes on an OutputStream
, and
flush the OutputStream
.
- copy(String, OutputStream) - Static method in class org.apache.maven.it.util.IOUtil
-
Serialize chars from a String
to bytes on an OutputStream
, and
flush the OutputStream
.
- copy(String, OutputStream, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Serialize chars from a String
to bytes on an OutputStream
, and
flush the OutputStream
.
- copy(String, Writer) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy chars from a String
to a Writer
.
- copy(byte[], Writer) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy and convert bytes from a byte[]
to chars on a
Writer
.
- copy(byte[], Writer, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy and convert bytes from a byte[]
to chars on a
Writer
.
- copy(byte[], Writer, String) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy and convert bytes from a byte[]
to chars on a
Writer
, using the specified encoding.
- copy(byte[], Writer, String, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy and convert bytes from a byte[]
to chars on a
Writer
, using the specified encoding.
- copy(byte[], OutputStream) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy bytes from a byte[]
to an OutputStream
.
- copy(byte[], OutputStream, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Copy bytes from a byte[]
to an OutputStream
.
- copyDirectory(File, File) - Static method in class org.apache.maven.it.util.FileUtils
-
- copyDirectory(File, File, String, String) - Static method in class org.apache.maven.it.util.FileUtils
-
- copyDirectoryStructure(File, File) - Static method in class org.apache.maven.it.util.FileUtils
-
Copies a entire directory structure.
- copyDirectoryStructureIfModified(File, File) - Static method in class org.apache.maven.it.util.FileUtils
-
Copies an entire directory structure but only source files with timestamp later than the destinations'.
- copyFile(File, File) - Static method in class org.apache.maven.it.util.FileUtils
-
Copy file from source to destination.
- copyFile(File, File, String, FileUtils.FilterWrapper[]) - Static method in class org.apache.maven.it.util.FileUtils
-
- copyFileIfModified(File, File) - Static method in class org.apache.maven.it.util.FileUtils
-
Copy file from source to destination only if source timestamp is later than the destination timestamp.
- copyFileToDirectory(String, String) - Static method in class org.apache.maven.it.util.FileUtils
-
Copy file from source to destination.
- copyFileToDirectory(File, File) - Static method in class org.apache.maven.it.util.FileUtils
-
Copy file from source to destination.
- copyFileToDirectoryIfModified(String, String) - Static method in class org.apache.maven.it.util.FileUtils
-
Copy file from source to destination only if source is newer than the target file.
- copyFileToDirectoryIfModified(File, File) - Static method in class org.apache.maven.it.util.FileUtils
-
Copy file from source to destination only if source is newer than the target file.
- copyURLToFile(URL, File) - Static method in class org.apache.maven.it.util.FileUtils
-
Copies bytes from the URL source
to a file destination
.
- couldHoldIncluded(String) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Tests whether or not a name matches the start of at least one include
pattern.
- countMatches(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
How many times is the substring in the larger String.
- createArgument() - Method in class org.apache.maven.it.util.cli.Commandline
-
Creates an argument object.
- createArgument(boolean) - Method in class org.apache.maven.it.util.cli.Commandline
-
Creates an argument object and adds it to our list of args.
- createMarker() - Method in class org.apache.maven.it.util.cli.Commandline
-
Return a marker.
- createTempFile(String, String, File) - Static method in class org.apache.maven.it.util.FileUtils
-
Create a temporary file in a given directory.
- DefaultConsumer - Class in org.apache.maven.it.util.cli
-
- DefaultConsumer() - Constructor for class org.apache.maven.it.util.cli.DefaultConsumer
-
- DEFAULTEXCLUDES - Static variable in class org.apache.maven.it.util.DirectoryScanner
-
Patterns which should be excluded by default.
- defaultString(Object) - Static method in class org.apache.maven.it.util.StringUtils
-
Returns either the passed in Object
as a String,
or, if the Object
is null
, an empty
String.
- defaultString(Object, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Returns either the passed in Object
as a String,
or, if the Object
is null
, a passed
in default String.
- deleteArtifact(String, String, String, String) - Method in class org.apache.maven.it.Verifier
-
- deleteArtifacts(String) - Method in class org.apache.maven.it.Verifier
-
Deletes all artifacts in the specified group id from the local repository.
- deleteDirectory(String) - Static method in class org.apache.maven.it.util.FileUtils
-
Recursively delete a directory.
- deleteDirectory(File) - Static method in class org.apache.maven.it.util.FileUtils
-
Recursively delete a directory.
- deleteDirectory(String) - Method in class org.apache.maven.it.Verifier
-
Deletes the specified directory.
- deleteWhitespace(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Deletes all whitespaces from a String.
- difference(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Compare two strings, and return the portion where they differ.
- differenceAt(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Compare two strings, and return the index at which the strings begin to differ.
- DirectoryScanner - Class in org.apache.maven.it.util
-
Class for scanning a directory for files/directories which match certain
criteria.
- DirectoryScanner() - Constructor for class org.apache.maven.it.util.DirectoryScanner
-
Sole constructor.
- dirname(String) - Static method in class org.apache.maven.it.util.FileUtils
-
Returns the directory path portion of a file specification string.
- dirsDeselected - Variable in class org.apache.maven.it.util.DirectoryScanner
-
The directories which matched at least one include and no excludes
but which a selector discarded.
- dirsExcluded - Variable in class org.apache.maven.it.util.DirectoryScanner
-
The directories which matched at least one include and at least one
exclude.
- dirsIncluded - Variable in class org.apache.maven.it.util.DirectoryScanner
-
The directories which matched at least one include and no excludes
and were selected.
- dirsNotIncluded - Variable in class org.apache.maven.it.util.DirectoryScanner
-
The directories which were found and did not match any includes.
- displayStreamBuffers() - Method in class org.apache.maven.it.Verifier
-
- getArguments() - Method in class org.apache.maven.it.util.cli.Commandline
-
Returns all arguments defined by addLine
,
addValue
or the argument object.
- getArtifactFileNameList(String, String, String, String) - Method in class org.apache.maven.it.Verifier
-
- getArtifactMetadataPath(String, String, String) - Method in class org.apache.maven.it.Verifier
-
Gets the path to the local artifact metadata.
- getArtifactMetadataPath(String, String) - Method in class org.apache.maven.it.Verifier
-
Gets the path to the local artifact metadata.
- getArtifactPath(String, String, String, String) - Method in class org.apache.maven.it.Verifier
-
- getBasedir() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Returns the base directory to be scanned.
- getBasedir() - Method in class org.apache.maven.it.Verifier
-
- getChomp(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Remove everything and return the last value of a supplied String, and
everything after it from a String.
- getCliOptions() - Method in class org.apache.maven.it.Verifier
-
- getCommandline() - Method in class org.apache.maven.it.util.cli.Commandline
-
Returns the executable and all defined arguments.
- getCommandLine(String, String[]) - Method in class org.apache.maven.it.util.cli.shell.CmdShell
-
Specific implementation that quotes the all the command line
- getCommandLine(String, String[]) - Method in class org.apache.maven.it.util.cli.shell.Shell
-
Get the command line for the provided executable and arguments in this shell
- getDefaultExcludes() - Static method in class org.apache.maven.it.util.FileUtils
-
- getDefaultExcludesAsList() - Static method in class org.apache.maven.it.util.FileUtils
-
- getDeselectedDirectories() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Returns the names of the directories which were selected out and
therefore not ultimately included.
- getDeselectedFiles() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Returns the names of the files which were selected out and
therefore not ultimately included.
- getDirectoryNames(File, String, String, boolean) - Static method in class org.apache.maven.it.util.FileUtils
-
Return a list of directories as String depending options.
- getDirectoryNames(File, String, String, boolean, boolean) - Static method in class org.apache.maven.it.util.FileUtils
-
Return a list of directories as String depending options.
- getEnvironmentVariables() - Method in class org.apache.maven.it.util.cli.Commandline
-
Return the list of environment variables
- getExcludedDirectories() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Returns the names of the directories which matched at least one of the
include patterns and at least one of the exclude patterns.
- getExcludedFiles() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Returns the names of the files which matched at least one of the
include patterns and at least one of the exclude patterns.
- getExecutable() - Method in class org.apache.maven.it.util.cli.Commandline
-
- getExecutable() - Method in class org.apache.maven.it.Verifier
-
- getExtension(String) - Static method in class org.apache.maven.it.util.FileUtils
-
Get extension from filename.
- getFile(String) - Static method in class org.apache.maven.it.util.FileUtils
-
Creates a file handle.
- getFileAndDirectoryNames(File, String, String, boolean, boolean, boolean, boolean) - Static method in class org.apache.maven.it.util.FileUtils
-
Return a list of files as String depending options.
- getFileNames(File, String, String, boolean) - Static method in class org.apache.maven.it.util.FileUtils
-
Return a list of files as String depending options.
- getFileNames(File, String, String, boolean, boolean) - Static method in class org.apache.maven.it.util.FileUtils
-
Return a list of files as String depending options.
- getFiles(File, String, String) - Static method in class org.apache.maven.it.util.FileUtils
-
Return the files contained in the directory, using inclusion and exclusion Ant patterns,
including the directory name in each of the files
- getFiles(File, String, String, boolean) - Static method in class org.apache.maven.it.util.FileUtils
-
Return the files contained in the directory, using inclusion and exclusion Ant patterns
- getFilesFromExtension(String, String[]) - Static method in class org.apache.maven.it.util.FileUtils
-
Given a directory and an array of extensions return an array of compliant files.
- getIncludedDirectories() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Returns the names of the directories which matched at least one of the
include patterns and none of the exclude patterns.
- getIncludedFiles() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Returns the names of the files which matched at least one of the
include patterns and none of the exclude patterns.
- getInstance() - Static method in class org.apache.maven.it.util.SelectorUtils
-
Retrieves the manager of the Singleton.
- getLogFileName() - Method in class org.apache.maven.it.Verifier
-
Gets the name of the file used to log build output.
- getMavenVersion() - Method in class org.apache.maven.it.Verifier
-
- getNestedString(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Get the String that is nested in between two instances of the
same String.
- getNestedString(String, String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Get the String that is nested in between two Strings.
- getNotIncludedDirectories() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Returns the names of the directories which matched none of the include
patterns.
- getNotIncludedFiles() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Returns the names of the files which matched none of the include
patterns.
- getOutput() - Method in class org.apache.maven.it.util.cli.CommandLineUtils.StringStreamConsumer
-
- getParts() - Method in class org.apache.maven.it.util.cli.Commandline.Argument
-
Returns the parts this Argument consists of.
- getPath(String) - Static method in class org.apache.maven.it.util.FileUtils
-
Get path from filename.
- getPath(String, char) - Static method in class org.apache.maven.it.util.FileUtils
-
Get path from filename.
- getPid() - Method in class org.apache.maven.it.util.cli.Commandline
-
- getPosition() - Method in class org.apache.maven.it.util.cli.Commandline.Marker
-
Return the number of arguments that preceeded this marker.
- getPrechomp(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Remove and return everything before the first value of a
supplied String from another String.
- getReader(Reader) - Method in class org.apache.maven.it.util.FileUtils.FilterWrapper
-
- getShell() - Method in class org.apache.maven.it.util.cli.Commandline
-
Get the shell to be used in this command line.
- getShellArgs() - Method in class org.apache.maven.it.util.cli.shell.Shell
-
Get the shell arguments
- getShellCommand() - Method in class org.apache.maven.it.util.cli.shell.Shell
-
Get the command to execute the shell
- getShellCommandline() - Method in class org.apache.maven.it.util.cli.Commandline
-
Returns the shell, executable and all defined arguments.
- getShellCommandLine(String, String[]) - Method in class org.apache.maven.it.util.cli.shell.Shell
-
Get the full command line to execute, including shell command, shell arguments,
executable and executable arguments
- getSystemEnvVars() - Method in class org.apache.maven.it.util.cli.Commandline
-
- getSystemEnvVars() - Static method in class org.apache.maven.it.util.cli.CommandLineUtils
-
- getSystemEnvVars(boolean) - Static method in class org.apache.maven.it.util.cli.CommandLineUtils
-
Return the shell environment variables.
- getSystemProperties() - Method in class org.apache.maven.it.Verifier
-
- getVerifierProperties() - Method in class org.apache.maven.it.Verifier
-
- getWorkingDirectory() - Method in class org.apache.maven.it.util.cli.Commandline
-
- includes - Variable in class org.apache.maven.it.util.DirectoryScanner
-
The patterns for the files to be included.
- indexOfAny(String, String[]) - Static method in class org.apache.maven.it.util.StringUtils
-
Find the first index of any of a set of potential substrings.
- interpolate(String, Map) - Static method in class org.apache.maven.it.util.StringUtils
-
- IOUtil - Class in org.apache.maven.it.util
-
General IO Stream manipulation.
- isAlive(long) - Static method in class org.apache.maven.it.util.cli.CommandLineUtils
-
- isAlpha(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Checks if the String contains only unicode letters.
- isAlphanumeric(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Checks if the String contains only unicode letters or digits.
- isAlphanumericSpace(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Checks if the String contains only unicode letters, digits
or space (' '
).
- isAlphaSpace(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Checks if the String contains only unicode letters and
space (' '
).
- isArch(String) - Static method in class org.apache.maven.it.util.Os
-
Determines if the current OS matches the given OS
architecture.
- isAutoclean() - Method in class org.apache.maven.it.Verifier
-
- isCaseSensitive - Variable in class org.apache.maven.it.util.DirectoryScanner
-
Whether or not the file system should be treated as a case sensitive
one.
- isDone() - Method in class org.apache.maven.it.util.cli.StreamFeeder
-
- isDone() - Method in class org.apache.maven.it.util.cli.StreamPumper
-
- isEmpty(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Checks if a (trimmed) String is null
or empty.
- isEverythingIncluded() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Returns whether or not the scanner has included all the files or
directories it has come across so far.
- isExcluded(String) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Tests whether or not a name matches against at least one exclude
pattern.
- isFamily(String) - Static method in class org.apache.maven.it.util.Os
-
Determines if the current OS matches the given OS
family.
- isIncluded(String) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Tests whether or not a name matches against at least one include
pattern.
- isMavenDebug() - Method in class org.apache.maven.it.Verifier
-
- isName(String) - Static method in class org.apache.maven.it.util.Os
-
Determines if the current OS matches the given OS
name.
- isNotEmpty(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Checks if a String is non null
and is
not empty (length > 0
).
- isNumeric(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Checks if the String contains only unicode digits.
- isNumericSpace(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Checks if the String contains only unicode digits or space
(' '
).
- isOs(String, String, String, String) - Static method in class org.apache.maven.it.util.Os
-
Determines if the current OS matches the given OS
family, name, architecture and version.
- isOutOfDate(File, File, int) - Static method in class org.apache.maven.it.util.SelectorUtils
-
Returns dependency information on these two files.
- isSelected(String, File) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Tests whether a name should be selected.
- isSymbolicLink(File, String) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Checks whether a given file is a symbolic link.
- isVersion(String) - Static method in class org.apache.maven.it.util.Os
-
Determines if the current OS matches the given OS
version.
- isWhitespace(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Checks if the String contains only whitespace.
- removeAndHump(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
- removeExtension(String) - Static method in class org.apache.maven.it.util.FileUtils
-
Remove extension from filename.
- removePath(String) - Static method in class org.apache.maven.it.util.FileUtils
-
Remove path from filename.
- removePath(String, char) - Static method in class org.apache.maven.it.util.FileUtils
-
Remove path from filename.
- removeWhitespace(String) - Static method in class org.apache.maven.it.util.SelectorUtils
-
"Flattens" a string by removing all whitespace (space, tab, linefeed,
carriage return, and formfeed).
- rename(File, File) - Static method in class org.apache.maven.it.util.FileUtils
-
Renames a file, even if that involves crossing file system boundaries.
- repeat(String, int) - Static method in class org.apache.maven.it.util.StringUtils
-
Repeat a String n
times to form a
new string.
- replace(String, char, char) - Static method in class org.apache.maven.it.util.StringUtils
-
Replace all occurances of a char within another char.
- replace(String, char, char, int) - Static method in class org.apache.maven.it.util.StringUtils
-
Replace a char with another char inside a larger String,
for the first max
values of the search char.
- replace(String, String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Replace all occurances of a String within another String.
- replace(String, String, String, int) - Static method in class org.apache.maven.it.util.StringUtils
-
Replace a String with another String inside a larger String,
for the first max
values of the search String.
- replaceOnce(String, char, char) - Static method in class org.apache.maven.it.util.StringUtils
-
Replace a char with another char inside a larger String, once.
- replaceOnce(String, String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Replace a String with another String inside a larger String, once.
- resetStreams() - Method in class org.apache.maven.it.Verifier
-
- resolveFile(File, String) - Static method in class org.apache.maven.it.util.FileUtils
-
Resolve a file filename
to it's canonical form.
- ResourceExtractor - Class in org.apache.maven.it.util
-
- ResourceExtractor() - Constructor for class org.apache.maven.it.util.ResourceExtractor
-
- reverse(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Reverse a String.
- reverseDelimitedString(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Reverses a String that is delimited by a specific character.
- right(String, int) - Static method in class org.apache.maven.it.util.StringUtils
-
Gets the rightmost n
characters of a String.
- rightPad(String, int) - Static method in class org.apache.maven.it.util.StringUtils
-
Right pad a String with spaces.
- rightPad(String, int, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Right pad a String with a specified string.
- run() - Method in class org.apache.maven.it.util.cli.StreamFeeder
-
- run() - Method in class org.apache.maven.it.util.cli.StreamPumper
-
- scan() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Scans the base directory for files which match at least one include
pattern and don't match any exclude patterns.
- scandir(File, String, boolean) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Scans the given directory for files and directories.
- SelectorUtils - Class in org.apache.maven.it.util
-
This is a utility class used by selectors and DirectoryScanner.
- setArch(String) - Method in class org.apache.maven.it.util.Os
-
Sets the desired OS architecture
- setAutoclean(boolean) - Method in class org.apache.maven.it.Verifier
-
- setBasedir(String) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Sets the base directory to be scanned.
- setBasedir(File) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Sets the base directory to be scanned.
- setCaseSensitive(boolean) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Sets whether or not the file system should be regarded as case sensitive.
- setCliOptions(List) - Method in class org.apache.maven.it.Verifier
-
- setDebug(boolean) - Method in class org.apache.maven.it.Verifier
-
- setExcludes(String[]) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Sets the list of exclude patterns to use.
- setExecutable(String) - Method in class org.apache.maven.it.util.cli.Commandline
-
Sets the executable to run.
- setFamily(String) - Method in class org.apache.maven.it.util.Os
-
Sets the desired OS family type
- setFile(File) - Method in class org.apache.maven.it.util.cli.Commandline.Argument
-
Sets a single commandline argument to the absolute filename
of the given file.
- setFollowSymlinks(boolean) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Sets whether or not symbolic links should be followed.
- setIncludes(String[]) - Method in class org.apache.maven.it.util.DirectoryScanner
-
Sets the list of include patterns to use.
- setLine(String) - Method in class org.apache.maven.it.util.cli.Commandline.Argument
-
Line to split into several commandline arguments.
- setLocalRepo(String) - Method in class org.apache.maven.it.Verifier
-
- setLogFileName(String) - Method in class org.apache.maven.it.Verifier
-
Sets the name of the file used to log build output.
- setMavenDebug(boolean) - Method in class org.apache.maven.it.Verifier
-
- setName(String) - Method in class org.apache.maven.it.util.Os
-
Sets the desired OS name
- setPid(long) - Method in class org.apache.maven.it.util.cli.Commandline
-
- setShell(Shell) - Method in class org.apache.maven.it.util.cli.Commandline
-
Allows to set the shell to be used in this command line.
- setShellArgs(String[]) - Method in class org.apache.maven.it.util.cli.shell.Shell
-
Set the shell arguments when calling a command line (not the executable arguments)
(eg.
- setShellCommand(String) - Method in class org.apache.maven.it.util.cli.shell.Shell
-
Set the command to execute the shell (eg.
- setSystemProperties(Properties) - Method in class org.apache.maven.it.Verifier
-
- setValue(String) - Method in class org.apache.maven.it.util.cli.Commandline.Argument
-
Sets a single commandline argument.
- setVerifierProperties(Properties) - Method in class org.apache.maven.it.Verifier
-
- setVersion(String) - Method in class org.apache.maven.it.util.Os
-
Sets the desired OS version
- setWorkingDirectory(String) - Method in class org.apache.maven.it.util.cli.Commandline
-
Sets execution directory.
- Shell - Class in org.apache.maven.it.util.cli.shell
-
Class that abstracts the Shell functionality,
with subclases for shells that behave particularly, like
command.com
cmd.exe
- Shell() - Constructor for class org.apache.maven.it.util.cli.shell.Shell
-
- simpleExtractResources(Class, String) - Static method in class org.apache.maven.it.util.ResourceExtractor
-
- size() - Method in class org.apache.maven.it.util.cli.Commandline
-
- sizeOfDirectory(String) - Static method in class org.apache.maven.it.util.FileUtils
-
Recursively count size of a directory.
- sizeOfDirectory(File) - Static method in class org.apache.maven.it.util.FileUtils
-
Recursively count size of a directory.
- slowScan() - Method in class org.apache.maven.it.util.DirectoryScanner
-
Top level invocation for a slow scan.
- split(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Splits the provided text into a array, using whitespace as the
separator.
- split(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
- split(String, String, int) - Static method in class org.apache.maven.it.util.StringUtils
-
Splits the provided text into a array, based on a given separator.
- StreamConsumer - Interface in org.apache.maven.it.util.cli
-
Works in concert with the StreamPumper class to
allow implementations to gain access to the lines being
"Pumped".
- StreamFeeder - Class in org.apache.maven.it.util.cli
-
Read from an InputStream and write the output to an OutputStream.
- StreamFeeder(InputStream, OutputStream) - Constructor for class org.apache.maven.it.util.cli.StreamFeeder
-
Create a new StreamFeeder
- StreamPumper - Class in org.apache.maven.it.util.cli
-
Class to pump the error stream during Process's runtime.
- StreamPumper(InputStream) - Constructor for class org.apache.maven.it.util.cli.StreamPumper
-
- StreamPumper(InputStream, StreamConsumer) - Constructor for class org.apache.maven.it.util.cli.StreamPumper
-
- StreamPumper(InputStream, PrintWriter) - Constructor for class org.apache.maven.it.util.cli.StreamPumper
-
- StreamPumper(InputStream, PrintWriter, StreamConsumer) - Constructor for class org.apache.maven.it.util.cli.StreamPumper
-
- StringUtils - Class in org.apache.maven.it.util
-
Common String
manipulation routines.
- StringUtils() - Constructor for class org.apache.maven.it.util.StringUtils
-
StringUtils
instances should NOT be constructed in
standard programming.
- strip(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Remove whitespace from the front and back of a String.
- strip(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Remove a specified String from the front and back of a
String.
- stripAll(String[]) - Static method in class org.apache.maven.it.util.StringUtils
-
Strip whitespace from the front and back of every String
in the array.
- stripAll(String[], String) - Static method in class org.apache.maven.it.util.StringUtils
-
Strip the specified delimiter from the front and back of
every String in the array.
- stripEnd(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Strip any of a supplied String from the end of a String.
- stripStart(String, String) - Static method in class org.apache.maven.it.util.StringUtils
-
Strip any of a supplied String from the start of a String.
- substring(String, int) - Static method in class org.apache.maven.it.util.StringUtils
-
Gets a substring from the specified string avoiding exceptions.
- substring(String, int, int) - Static method in class org.apache.maven.it.util.StringUtils
-
Gets a substring from the specified String avoiding exceptions.
- swapCase(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Swaps the case of String.
- toByteArray(InputStream) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of an InputStream
as a byte[]
.
- toByteArray(InputStream, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of an InputStream
as a byte[]
.
- toByteArray(Reader) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of a Reader
as a byte[]
.
- toByteArray(Reader, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of a Reader
as a byte[]
.
- toByteArray(String) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of a String
as a byte[]
.
- toByteArray(String, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of a String
as a byte[]
.
- toFile(URL) - Static method in class org.apache.maven.it.util.FileUtils
-
Convert from a URL
to a File
.
- tokenizePath(String) - Static method in class org.apache.maven.it.util.SelectorUtils
-
Breaks a path up into a Vector of path elements, tokenizing on
File.separator
.
- toString() - Method in class org.apache.maven.it.util.cli.Commandline
-
- toString(String[]) - Static method in class org.apache.maven.it.util.cli.Commandline
-
- toString(InputStream) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of an InputStream
as a String.
- toString(InputStream, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of an InputStream
as a String.
- toString(InputStream, String) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of an InputStream
as a String.
- toString(InputStream, String, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of an InputStream
as a String.
- toString(Reader) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of a Reader
as a String.
- toString(Reader, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of a Reader
as a String.
- toString(byte[]) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of a byte[]
as a String.
- toString(byte[], int) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of a byte[]
as a String.
- toString(byte[], String) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of a byte[]
as a String.
- toString(byte[], String, int) - Static method in class org.apache.maven.it.util.IOUtil
-
Get the contents of a byte[]
as a String.
- toURLs(File[]) - Static method in class org.apache.maven.it.util.FileUtils
-
Convert the array of Files into a list of URLs.
- translateCommandline(String) - Static method in class org.apache.maven.it.util.cli.Commandline
-
- trim(String) - Static method in class org.apache.maven.it.util.StringUtils
-
Removes control characters, including whitespace, from both
ends of this String, handling null
by returning
null
.