Index
All Classes and Interfaces|All Packages
C
- canExecute(File) - Static method in class rife.bld.extension.tools.IOTools
-
Determines if the specified file exists, is a file, and is executable.
- canExecute(String) - Static method in class rife.bld.extension.tools.IOTools
-
Determines if the file at the specified path string exists, is a regular file, and is executable.
- canExecute(Path) - Static method in class rife.bld.extension.tools.IOTools
-
Determines if the specified path exists, is a regular file, and is executable.
- ClasspathTools - Class in rife.bld.extension.tools
-
Classpath Tools.
E
- exists(File) - Static method in class rife.bld.extension.tools.IOTools
-
Checks if the specified file exists.
- exists(String) - Static method in class rife.bld.extension.tools.IOTools
-
Checks whether a file or directory exists at the specified path.
- exists(Path) - Static method in class rife.bld.extension.tools.IOTools
-
Checks if the specified path exists.
I
- IOTools - Class in rife.bld.extension.tools
-
I/O Tools.
- isAix() - Static method in class rife.bld.extension.tools.SystemTools
-
Determines if the current operating system is AIX.
- isAnyNull(Collection<?>) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if any element in the collection is
null. - isAnyNull(T...) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if any of the provided objects are
null. - isBlank(CharSequence) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if a character sequence is
null, empty, or contains only whitespace characters. - isBlank(CharSequence...) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if all character sequences are
null, empty, or contain only whitespace characters. - isBlank(Object...) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if all string objects are
null, empty, or contain only whitespace characters. - isCygwin() - Static method in class rife.bld.extension.tools.SystemTools
-
Determines if the current environment is running in a Cygwin environment.
- isDirectory(File) - Static method in class rife.bld.extension.tools.IOTools
-
Determines if the specified
Fileis a directory. - isDirectory(String) - Static method in class rife.bld.extension.tools.IOTools
-
Determines if the specified path string represents an existing directory.
- isDirectory(Path) - Static method in class rife.bld.extension.tools.IOTools
-
Determines if the specified
Pathrepresents an existing directory. - isEmpty(CharSequence) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if a character sequence is
nullor empty. - isEmpty(CharSequence...) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if all character sequences are
nullor empty. - isEmpty(Object...) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if all string objects are
nullor their string representations are empty. - isEmpty(Collection<?>) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if the provided collection is empty or
null. - isEmpty(Map<?, ?>) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if the provided
Mapis empty ornull. - isEmpty(T[]) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if the provided array is empty or
null. - isEmpty(T[]...) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if all provided arrays are empty or
null. - isFreeBsd() - Static method in class rife.bld.extension.tools.SystemTools
-
Determines if the current operating system is FreeBSD.
- isLinux() - Static method in class rife.bld.extension.tools.SystemTools
-
Determines if the operating system is Linux.
- isMacOS() - Static method in class rife.bld.extension.tools.SystemTools
-
Determines if the current operating system is macOS.
- isMingw() - Static method in class rife.bld.extension.tools.SystemTools
-
Determines if the current environment is running in a Mingw environment.
- isNotBlank(CharSequence) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if a character sequence is not
null, not empty, and not whitespace-only. - isNotBlank(CharSequence...) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if all character sequences are not
null, not empty, and not whitespace-only. - isNotBlank(Object...) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if all string objects are not
null, not empty, and not whitespace-only. - isNotEmpty(CharSequence) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if a character sequence is not
nulland not empty. - isNotEmpty(CharSequence...) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if all character sequences are not
nulland not empty. - isNotEmpty(Object...) - Static method in class rife.bld.extension.tools.TextTools
-
Checks if all string objects are not
nulland their string representations are not empty. - isNotEmpty(Collection<?>) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if the provided collection is not
nulland not empty. - isNotEmpty(Map<?, ?>) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if the provided
Mapis notnulland not empty. - isNotEmpty(T[]) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if the provided array is not
nulland not empty. - isNotEmpty(T[]...) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if any of the provided arrays are not
nulland not empty. - isNotNull(Collection<?>) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if all elements in the collection are non-
null. - isNotNull(T...) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if all provided objects are non-
null. - isNull(Collection<?>) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if all elements in the collection are
null. - isNull(T...) - Static method in class rife.bld.extension.tools.ObjectTools
-
Checks if all provided objects are
null. - isOpenVms() - Static method in class rife.bld.extension.tools.SystemTools
-
Determines if the current operating system is OpenVMS.
- isOtherOS() - Static method in class rife.bld.extension.tools.SystemTools
-
Determines if the current operating system is other than AIX, FreeBSD, Linux, macOS, OpenVMS, Solaris, or Windows.
- isSolaris() - Static method in class rife.bld.extension.tools.SystemTools
-
Determines if the current operating system is Solaris.
- isWindows() - Static method in class rife.bld.extension.tools.SystemTools
-
Determines if the current operating system is Windows.
J
- joinClasspath(String...) - Static method in class rife.bld.extension.tools.ClasspathTools
-
Join string paths into a single classpath by concatenating non-blank paths using the system's path separator.
- joinClasspath(Collection<File>...) - Static method in class rife.bld.extension.tools.ClasspathTools
-
Joins multiple collections of file paths into a single classpath string using the system's path separator.
M
- mkdirs(File) - Static method in class rife.bld.extension.tools.IOTools
-
Creates the directory named by the specified
File, including any necessary but nonexistent parent directories. - mkdirs(String) - Static method in class rife.bld.extension.tools.IOTools
-
Creates the directory specified by the given path string, including any nonexistent parent directories as necessary.
- mkdirs(Path) - Static method in class rife.bld.extension.tools.IOTools
-
Creates the directory specified by the given
Path, including any nonexistent parent directories as necessary.
N
- notExists(File) - Static method in class rife.bld.extension.tools.IOTools
-
Checks if the specified file does not exist.
- notExists(String) - Static method in class rife.bld.extension.tools.IOTools
-
Checks whether a file or directory does not exist at the specified path.
- notExists(Path) - Static method in class rife.bld.extension.tools.IOTools
-
Checks if the specified path does not exist.
O
- ObjectTools - Class in rife.bld.extension.tools
-
Object Tools.
R
- resolveFile(File, String...) - Static method in class rife.bld.extension.tools.IOTools
-
Resolves a file path by joining a base file with additional path segments.
- rife.bld.extension.tools - package rife.bld.extension.tools
-
Provides a collection of tools used by various bld Extensions.
S
- SystemTools - Class in rife.bld.extension.tools
-
System Tools.
T
- TextTools - Class in rife.bld.extension.tools
-
Text Tools.
All Classes and Interfaces|All Packages