Package org.forgerock.util
Class Utils
java.lang.Object
org.forgerock.util.Utils
Common utility methods.
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T extends Enum<T>>
TReturns the string value as an enum constant of the specified enum type.static voidcloseSilently(Closeable... resources) Closes the provided resources ignoring any errors which occurred.static voidcloseSilently(Iterable<? extends Closeable> resources) Closes the provided resources ignoring any errors which occurred.static booleanisBlank(CharSequence charSeq) Check to see if a character sequence is null or blank.static booleanisNullOrEmpty(String value) Check to see if the provided String isnullor empty.static voidjoinAsString(StringBuilder builder, String separator, Iterable<?> values) Appends into the providedStringBuilderthe string representation of the objects contained in the provided iterable concatenated together using the provided separator.static voidjoinAsString(StringBuilder builder, String separator, Object... values) Appends into the providedStringBuilderthe string representation of the provided objects concatenated together using the provided separator.static StringjoinAsString(String separator, Iterable<?> values) Returns a string whose content is the string representation of the objects contained in the provided iterable concatenated together using the provided separator.static StringjoinAsString(String separator, Object... values) Returns a string whose content is the string representation of the provided objects concatenated together using the provided separator.static ThreadFactorynewThreadFactory(ThreadGroup group, String nameTemplate, boolean isDaemon) Creates a new thread factory which will create threads using the specified thread group, naming template, and daemon status.
-
Method Details
-
closeSilently
Closes the provided resources ignoring any errors which occurred.- Parameters:
resources- The resources to be closed, which may benull.
-
closeSilently
Closes the provided resources ignoring any errors which occurred.- Parameters:
resources- The resources to be closed, which may benull.
-
joinAsString
Returns a string whose content is the string representation of the provided objects concatenated together using the provided separator.- Parameters:
separator- The separator string.values- The objects to be joined.- Returns:
- A string whose content is the string representation of the provided objects concatenated together using the provided separator.
- Throws:
NullPointerException- Ifvaluesorseparatorwerenull.
-
joinAsString
Returns a string whose content is the string representation of the objects contained in the provided iterable concatenated together using the provided separator.- Parameters:
separator- The separator string.values- The iterable whose elements are to be joined.- Returns:
- A string whose content is the string representation of the objects contained in the provided iterable concatenated together using the provided separator.
- Throws:
NullPointerException- Ifseparatororvalueswerenull.
-
joinAsString
Appends into the providedStringBuilderthe string representation of the provided objects concatenated together using the provided separator.- Parameters:
builder- The String builder where to append.separator- The separator string.values- The objects to be joined.- Throws:
NullPointerException- Ifbuilder,separatororvalueswerenull.
-
joinAsString
Appends into the providedStringBuilderthe string representation of the objects contained in the provided iterable concatenated together using the provided separator.- Parameters:
builder- The String builder where to append.separator- The separator string.values- The iterable whose elements are to be joined.- Throws:
NullPointerException- Ifbuilder,separatororvalueswerenull.
-
newThreadFactory
public static ThreadFactory newThreadFactory(ThreadGroup group, String nameTemplate, boolean isDaemon) Creates a new thread factory which will create threads using the specified thread group, naming template, and daemon status.- Parameters:
group- The thread group, which may benull.nameTemplate- The thread name format string which may contain a "%d" format option which will be substituted with the thread count.isDaemon- Indicates whether or not threads should be daemon threads.- Returns:
- The new thread factory.
-
asEnum
Returns the string value as an enum constant of the specified enum type. The string value and enum constants are compared, ignoring case considerations. If the string value isnull, this method returnsnull.- Type Parameters:
T- the enum type sub-class.- Parameters:
value- the string valuetype- the enum type to match constants with the value.- Returns:
- the enum constant represented by the string value.
- Throws:
IllegalArgumentException- iftypedoes not represent an enum type, of ifvaluedoes not match one of the enum constantsNullPointerException- iftypeisnull.
-
isNullOrEmpty
Check to see if the provided String isnullor empty.- Parameters:
value- The value to check.- Returns:
trueif the value is eithernullor is empty.
-
isBlank
Check to see if a character sequence is null or blank.- Parameters:
charSeq- Sequence to test (String is also a CharSequence)- Returns:
- true if the char sequence is null or blank.
-