Index
All Classes and Interfaces|All Packages|Serialized Form
A
- addObjectToArray(A[], O) - Static method in class com.okta.commons.lang.Objects
-
Append the given object to the given array, returning a new array consisting of the input array contents plus the given object.
- addStringToArray(String[], String) - Static method in class com.okta.commons.lang.Strings
-
Append the given
Stringto the givenStringarray, returning a new array consisting of the input array contents plus the givenString. - ApplicationInfo - Class in com.okta.commons.lang
- applyRelativePath(String, String) - Static method in class com.okta.commons.lang.Strings
-
Apply the given relative path to the given Java resource path, assuming standard Java folder separation (i.e.
- arrayToCommaDelimitedString(Object[]) - Static method in class com.okta.commons.lang.Strings
-
Convert a
Stringarray into a comma delimitedString(i.e., CSV). - arrayToDelimitedString(Object[], String) - Static method in class com.okta.commons.lang.Strings
-
Convert a
Stringarray into a delimitedString(e.g. - arrayToList(Object) - Static method in class com.okta.commons.lang.Collections
-
Convert the supplied array into a List.
- Assert - Class in com.okta.commons.lang
- Assert() - Constructor for class com.okta.commons.lang.Assert
C
- capitalize(String) - Static method in class com.okta.commons.lang.Strings
-
Capitalize a
String, changing the first letter to upper case as perCharacter.toUpperCase(char). - caseInsensitiveValueOf(E[], String) - Static method in class com.okta.commons.lang.Objects
-
Case insensitive alternative to
Enum.valueOf(Class, String). - Classes - Class in com.okta.commons.lang
- Classes() - Constructor for class com.okta.commons.lang.Classes
- clean(String) - Static method in class com.okta.commons.lang.Strings
-
Returns a 'cleaned' representation of the specified argument.
- cleanPath(String) - Static method in class com.okta.commons.lang.Strings
-
Normalize the path by suppressing sequences like "path/.." and inner simple dots.
- Collections - Class in com.okta.commons.lang
- Collections() - Constructor for class com.okta.commons.lang.Collections
- collectionToCommaDelimitedString(Collection<?>) - Static method in class com.okta.commons.lang.Strings
-
Convert a
Collectioninto a delimitedString(e.g., CSV). - collectionToDelimitedString(Collection<?>, String) - Static method in class com.okta.commons.lang.Strings
-
Convert a
Collectioninto a delimitedString(e.g. - collectionToDelimitedString(Collection<?>, String, String, String) - Static method in class com.okta.commons.lang.Strings
-
Convert a
Collectionto a delimitedString(e.g. - com.okta.commons.lang - package com.okta.commons.lang
- commaDelimitedListToSet(String) - Static method in class com.okta.commons.lang.Strings
-
Convert a comma delimited list (e.g., a row from a CSV file) into a set.
- commaDelimitedListToStringArray(String) - Static method in class com.okta.commons.lang.Strings
-
Convert a comma delimited list (e.g., a row from a CSV file) into an array of strings.
- concatenateStringArrays(String[], String[]) - Static method in class com.okta.commons.lang.Strings
-
Concatenate the given
Stringarrays into one, with overlapping array elements included twice. - contains(Enumeration, Object) - Static method in class com.okta.commons.lang.Collections
-
Check whether the given Enumeration contains the given element.
- contains(Iterator, Object) - Static method in class com.okta.commons.lang.Collections
-
Check whether the given Iterator contains the given element.
- containsAny(Collection, Collection) - Static method in class com.okta.commons.lang.Collections
-
Return
trueif any element in 'candidates' is contained in 'source'; otherwise returnsfalse. - containsConstant(Enum<?>[], String) - Static method in class com.okta.commons.lang.Objects
-
Check whether the given array of enum constants contains a constant with the given name, ignoring case when determining a match.
- containsConstant(Enum<?>[], String, boolean) - Static method in class com.okta.commons.lang.Objects
-
Check whether the given array of enum constants contains a constant with the given name.
- containsElement(Object[], Object) - Static method in class com.okta.commons.lang.Objects
-
Check whether the given array contains the given element.
- containsInstance(Collection, Object) - Static method in class com.okta.commons.lang.Collections
-
Check whether the given Collection contains the given element instance.
- containsWhitespace(CharSequence) - Static method in class com.okta.commons.lang.Strings
-
Check whether the given
CharSequencecontains any whitespace characters. - containsWhitespace(String) - Static method in class com.okta.commons.lang.Strings
-
Check whether the given
Stringcontains any whitespace characters. - convertDate(long, TimeZone, TimeZone) - Static method in class com.okta.commons.lang.Instants
-
Converts a given time from a
TimeZoneto another - convertDateToLocalTime(long, TimeZone) - Static method in class com.okta.commons.lang.Instants
-
Converts a given time from UTC (Coordinated Universal Time) to the corresponding time in the specified
TimeZone - convertDateToUTC(long, TimeZone) - Static method in class com.okta.commons.lang.Instants
-
Converts a given time from the specified
TimeZoneto the corresponding UTC (Coordinated Universal Time) time - countOccurrencesOf(String, String) - Static method in class com.okta.commons.lang.Strings
-
Count the occurrences of the substring
subin stringstr.
D
- delete(String, String) - Static method in class com.okta.commons.lang.Strings
-
Delete all occurrences of the given substring.
- deleteAny(String, String) - Static method in class com.okta.commons.lang.Strings
-
Delete any character in a given
String. - delimitedListToStringArray(String, String) - Static method in class com.okta.commons.lang.Strings
-
Take a
Stringthat is a delimited list and convert it into aStringarray. - delimitedListToStringArray(String, String, String) - Static method in class com.okta.commons.lang.Strings
-
Take a
Stringthat is a delimited list and convert it into aStringarray. - doesNotContain(String, String) - Static method in class com.okta.commons.lang.Assert
-
Assert that the given text does not contain the given substring.
- doesNotContain(String, String, String) - Static method in class com.okta.commons.lang.Assert
-
Assert that the given text does not contain the given substring.
E
- endsWithIgnoreCase(String, String) - Static method in class com.okta.commons.lang.Strings
-
Test if the given
Stringends with the specified suffix, ignoring upper/lower case.
F
- findCommonElementType(Collection) - Static method in class com.okta.commons.lang.Collections
-
Find the common element type of the given Collection, if any.
- findFirstMatch(Collection, Collection) - Static method in class com.okta.commons.lang.Collections
-
Return the first element in '
candidates' that is contained in 'source'. - findFirstValueOfType(Collection<?>, Class<T>) - Static method in class com.okta.commons.lang.Collections
-
Find the first single value of the given type in the given Collection or
nullif none was found - findValueOfType(Collection<?>, Class<?>[]) - Static method in class com.okta.commons.lang.Collections
-
Find a single value of one of the given types in the given Collection: searching the Collection for a value of the first type, then searching for a value of the second type, etc.
- forName(String) - Static method in class com.okta.commons.lang.Classes
-
Attempts to load the specified class name from the current thread's
context class loader, then the current ClassLoader (Classes.class.getClassLoader()), then the system/application ClassLoader (ClassLoader.getSystemClassLoader(), in that order.
G
- get() - Static method in class com.okta.commons.lang.ApplicationInfo
- getBytesUtf8(String) - Static method in class com.okta.commons.lang.Strings
-
Encodes the given string into a sequence of bytes using the UTF-8 charset, storing the result into a new byte array.
- getConfigDirectory() - Static method in class com.okta.commons.lang.XdgConfig
- getConfigFile(String) - Static method in class com.okta.commons.lang.XdgConfig
- getConstructor(Class<T>, Class...) - Static method in class com.okta.commons.lang.Classes
- getDisplayString(Object) - Static method in class com.okta.commons.lang.Objects
-
Return a content-based String representation if
objis notnull; otherwise returns an empty String. - getFilename(String) - Static method in class com.okta.commons.lang.Strings
-
Extract the filename from the given Java resource path, e.g.
- getFilenameExtension(String) - Static method in class com.okta.commons.lang.Strings
-
Extract the filename extension from the given Java resource path, e.g.
- getIdentityHexString(Object) - Static method in class com.okta.commons.lang.Objects
-
Return a hex String form of an object's identity hash code.
- getResourceAsStream(String) - Static method in class com.okta.commons.lang.Classes
-
Returns the specified resource by checking the current thread's
context class loader, then the current ClassLoader (Classes.class.getClassLoader()), then the system/application ClassLoader (ClassLoader.getSystemClassLoader(), in that order, usinggetResourceAsStream(name).
H
- hashCode(boolean) - Static method in class com.okta.commons.lang.Objects
-
Return the same value as
Boolean.hashCode()}. - hashCode(double) - Static method in class com.okta.commons.lang.Objects
-
Return the same value as
Double.hashCode()}. - hashCode(float) - Static method in class com.okta.commons.lang.Objects
-
Return the same value as
Float.hashCode()}. - hashCode(long) - Static method in class com.okta.commons.lang.Objects
-
Return the same value as
Long.hashCode()}. - hasLength(CharSequence) - Static method in class com.okta.commons.lang.Strings
-
Check that the given
CharSequenceis neithernullnor of length 0. - hasLength(String) - Static method in class com.okta.commons.lang.Assert
-
Assert that the given String is not empty; that is, it must not be
nulland not the empty String. - hasLength(String) - Static method in class com.okta.commons.lang.Strings
-
Check that the given
Stringis neithernullnor of length 0. - hasLength(String, String) - Static method in class com.okta.commons.lang.Assert
-
Assert that the given String is not empty; that is, it must not be
nulland not the empty String. - hasText(CharSequence) - Static method in class com.okta.commons.lang.Strings
-
Check whether the given
CharSequencecontains actual text. - hasText(String) - Static method in class com.okta.commons.lang.Assert
-
Assert that the given String has valid text content; that is, it must not be
nulland must contain at least one non-whitespace character. - hasText(String) - Static method in class com.okta.commons.lang.Strings
-
Check whether the given
Stringcontains actual text. - hasText(String, String) - Static method in class com.okta.commons.lang.Assert
-
Assert that the given String has valid text content; that is, it must not be
nulland must contain at least one non-whitespace character. - hasUniqueObject(Collection) - Static method in class com.okta.commons.lang.Collections
-
Determine whether the given Collection only contains a single unique object.
I
- identityToString(Object) - Static method in class com.okta.commons.lang.Objects
-
Return a String representation of an object's overall identity.
- instantiate(Constructor<T>, Object...) - Static method in class com.okta.commons.lang.Classes
- InstantiationException - Exception Class in com.okta.commons.lang
- InstantiationException(String, Throwable) - Constructor for exception class com.okta.commons.lang.InstantiationException
- Instants - Class in com.okta.commons.lang
-
Utility class to create UTC-based dates and perform time conversions from UTC to other
timezonesand vice versa - Instants() - Constructor for class com.okta.commons.lang.Instants
- isArray(Object) - Static method in class com.okta.commons.lang.Objects
-
Determine whether the given object is an array: either an Object array or a primitive array.
- isAssignable(Class, Class) - Static method in class com.okta.commons.lang.Assert
-
Assert that
superType.isAssignableFrom(subType)istrue. - isAssignable(Class, Class, String) - Static method in class com.okta.commons.lang.Assert
-
Assert that
superType.isAssignableFrom(subType)istrue. - isAvailable(String) - Static method in class com.okta.commons.lang.Classes
- isCheckedException(Throwable) - Static method in class com.okta.commons.lang.Objects
-
Return whether the given throwable is a checked exception: that is, neither a RuntimeException nor an Error.
- isCompatibleWithThrowsClause(Throwable, Class<?>...) - Static method in class com.okta.commons.lang.Objects
-
Check whether the given exception is compatible with the specified exception types, as declared in a throws clause.
- isEmpty(Object) - Static method in class com.okta.commons.lang.Objects
-
Determine whether the given object is empty.
- isEmpty(Object) - Static method in class com.okta.commons.lang.Strings
-
Check whether the given
Stringis empty. - isEmpty(Object[]) - Static method in class com.okta.commons.lang.Objects
-
Determine whether the given array is empty: i.e.
- isEmpty(Collection) - Static method in class com.okta.commons.lang.Collections
-
Return
trueif the supplied Collection isnullor empty. - isEmpty(Map) - Static method in class com.okta.commons.lang.Collections
-
Return
trueif the supplied Map isnullor empty. - isInstanceOf(Class, Object) - Static method in class com.okta.commons.lang.Assert
-
Assert that the provided object is an instance of the provided class.
- isInstanceOf(Class, Object, String) - Static method in class com.okta.commons.lang.Assert
-
Assert that the provided object is an instance of the provided class.
- isNull(Object) - Static method in class com.okta.commons.lang.Assert
-
Assert that an object is
null. - isNull(Object, String) - Static method in class com.okta.commons.lang.Assert
-
Assert that an object is
null. - isTrue(boolean) - Static method in class com.okta.commons.lang.Assert
-
Assert a boolean expression, throwing
IllegalArgumentExceptionif the test result isfalse. - isTrue(boolean, String) - Static method in class com.okta.commons.lang.Assert
-
Assert a boolean expression, throwing
IllegalArgumentExceptionif the test result isfalse.
L
- loadFromService(Class<T>) - Static method in class com.okta.commons.lang.Classes
- loadFromService(Class<T>, String) - Static method in class com.okta.commons.lang.Classes
- Locales - Class in com.okta.commons.lang
-
Imported from Apache Commons Lang.
M
- mergeArrayIntoCollection(Object, Collection) - Static method in class com.okta.commons.lang.Collections
-
Merge the given array into the given Collection.
- mergePropertiesIntoMap(Properties, Map) - Static method in class com.okta.commons.lang.Collections
-
Merge the given Properties instance into the given Map, copying all properties (key-value pairs) over.
- mergeStringArrays(String[], String[]) - Static method in class com.okta.commons.lang.Strings
-
Merge the given
Stringarrays into one, with overlapping array elements only included once.
N
- newInstance(Class<T>) - Static method in class com.okta.commons.lang.Classes
- newInstance(Class<T>, Object...) - Static method in class com.okta.commons.lang.Classes
- newInstance(String) - Static method in class com.okta.commons.lang.Classes
- newInstance(String, Object...) - Static method in class com.okta.commons.lang.Classes
- noNullElements(Object[]) - Static method in class com.okta.commons.lang.Assert
-
Assert that an array has no null elements.
- noNullElements(Object[], String) - Static method in class com.okta.commons.lang.Assert
-
Assert that an array has no null elements.
- notEmpty(Object[]) - Static method in class com.okta.commons.lang.Assert
-
Assert that an array has elements; that is, it must not be
nulland must have at least one element. - notEmpty(Object[], String) - Static method in class com.okta.commons.lang.Assert
-
Assert that an array has elements; that is, it must not be
nulland must have at least one element. - notEmpty(Collection) - Static method in class com.okta.commons.lang.Assert
-
Assert that a collection has elements; that is, it must not be
nulland must have at least one element. - notEmpty(Collection, String) - Static method in class com.okta.commons.lang.Assert
-
Assert that a collection has elements; that is, it must not be
nulland must have at least one element. - notEmpty(Map) - Static method in class com.okta.commons.lang.Assert
-
Assert that a Map has entries; that is, it must not be
nulland must have at least one entry. - notEmpty(Map, String) - Static method in class com.okta.commons.lang.Assert
-
Assert that a Map has entries; that is, it must not be
nulland must have at least one entry. - notNull(Object) - Static method in class com.okta.commons.lang.Assert
-
Assert that an object is not
null. - notNull(Object, String) - Static method in class com.okta.commons.lang.Assert
-
Assert that an object is not
null. - nullSafeClassName(Object) - Static method in class com.okta.commons.lang.Objects
-
Determine the class name for the given object.
- nullSafeEquals(Object, Object) - Static method in class com.okta.commons.lang.Objects
-
Determine if the given objects are equal, returning
trueif both arenullorfalseif only one isnull. - nullSafeHashCode(boolean[]) - Static method in class com.okta.commons.lang.Objects
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(byte[]) - Static method in class com.okta.commons.lang.Objects
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(char[]) - Static method in class com.okta.commons.lang.Objects
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(double[]) - Static method in class com.okta.commons.lang.Objects
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(float[]) - Static method in class com.okta.commons.lang.Objects
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(int[]) - Static method in class com.okta.commons.lang.Objects
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(long[]) - Static method in class com.okta.commons.lang.Objects
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(short[]) - Static method in class com.okta.commons.lang.Objects
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(Object) - Static method in class com.okta.commons.lang.Objects
-
Return as hash code for the given object; typically the value of
Object#hashCode()}. - nullSafeHashCode(Object[]) - Static method in class com.okta.commons.lang.Objects
-
Return a hash code based on the contents of the specified array.
- nullSafeToString(boolean[]) - Static method in class com.okta.commons.lang.Objects
-
Return a String representation of the contents of the specified array.
- nullSafeToString(byte[]) - Static method in class com.okta.commons.lang.Objects
-
Return a String representation of the contents of the specified array.
- nullSafeToString(char[]) - Static method in class com.okta.commons.lang.Objects
-
Return a String representation of the contents of the specified array.
- nullSafeToString(double[]) - Static method in class com.okta.commons.lang.Objects
-
Return a String representation of the contents of the specified array.
- nullSafeToString(float[]) - Static method in class com.okta.commons.lang.Objects
-
Return a String representation of the contents of the specified array.
- nullSafeToString(int[]) - Static method in class com.okta.commons.lang.Objects
-
Return a String representation of the contents of the specified array.
- nullSafeToString(long[]) - Static method in class com.okta.commons.lang.Objects
-
Return a String representation of the contents of the specified array.
- nullSafeToString(short[]) - Static method in class com.okta.commons.lang.Objects
-
Return a String representation of the contents of the specified array.
- nullSafeToString(Object) - Static method in class com.okta.commons.lang.Objects
-
Return a String representation of the specified Object.
- nullSafeToString(Object[]) - Static method in class com.okta.commons.lang.Objects
-
Return a String representation of the contents of the specified array.
O
- Objects - Class in com.okta.commons.lang
-
Miscellaneous object utility methods.
- Objects() - Constructor for class com.okta.commons.lang.Objects
- of(int) - Static method in class com.okta.commons.lang.Instants
-
Creates an UTC-based
Dateusing the providedyear. - of(int, int) - Static method in class com.okta.commons.lang.Instants
- of(int, int, int) - Static method in class com.okta.commons.lang.Instants
-
Creates an UTC-based
Datefrom the providedyear,monthanddayUses the current date and time, sets the specifiedyear,monthandday, and returns the Date converted to a UTC timestamp. - of(int, int, int, int) - Static method in class com.okta.commons.lang.Instants
- of(int, int, int, int, int) - Static method in class com.okta.commons.lang.Instants
- of(int, int, int, int, int, int) - Static method in class com.okta.commons.lang.Instants
- of(int, int, int, int, int, int, int) - Static method in class com.okta.commons.lang.Instants
P
- parseLocaleString(String) - Static method in class com.okta.commons.lang.Strings
-
Parse the given
localeStringvalue into aLocale. - parseTimeZoneString(String) - Static method in class com.okta.commons.lang.Strings
-
Parse the given
timeZoneStringvalue into aTimeZone. - pathEquals(String, String) - Static method in class com.okta.commons.lang.Strings
-
Compare two paths after normalization of them.
Q
- quote(String) - Static method in class com.okta.commons.lang.Strings
-
Quote the given
Stringwith single quotes. - quoteIfString(Object) - Static method in class com.okta.commons.lang.Strings
-
Turn the given Object into a
Stringwith single quotes if it is aString; keeping the Object as-is else.
R
- removeDuplicateStrings(String[]) - Static method in class com.okta.commons.lang.Strings
-
Remove duplicate strings from the given array.
- replace(String, String, String) - Static method in class com.okta.commons.lang.Strings
-
Replace all occurrences of a substring within a string with another string.
S
- size(Collection) - Static method in class com.okta.commons.lang.Collections
-
Returns the collection's size or
0if the collection isnull. - size(Map) - Static method in class com.okta.commons.lang.Collections
-
Returns the map's size or
0if the map isnull. - sortStringArray(String[]) - Static method in class com.okta.commons.lang.Strings
-
Turn given source
Stringarray into sorted array. - split(String, String) - Static method in class com.okta.commons.lang.Strings
-
Split a
Stringat the first occurrence of the delimiter. - splitArrayElementsIntoProperties(String[], String) - Static method in class com.okta.commons.lang.Strings
-
Take an array of strings and split each element based on the given delimiter.
- splitArrayElementsIntoProperties(String[], String, String) - Static method in class com.okta.commons.lang.Strings
-
Take an array of strings and split each element based on the given delimiter.
- startsWithIgnoreCase(String, String) - Static method in class com.okta.commons.lang.Strings
-
Test if the given
Stringstarts with the specified prefix, ignoring upper/lower case. - state(boolean) - Static method in class com.okta.commons.lang.Assert
-
Assert a boolean expression, throwing
IllegalStateExceptionif the test result isfalse. - state(boolean, String) - Static method in class com.okta.commons.lang.Assert
-
Assert a boolean expression, throwing
IllegalStateExceptionif the test result isfalse. - Strings - Class in com.okta.commons.lang
-
Miscellaneous
Stringutility methods. - Strings() - Constructor for class com.okta.commons.lang.Strings
- stripFilenameExtension(String) - Static method in class com.okta.commons.lang.Strings
-
Strip the filename extension from the given Java resource path, e.g.
- substringMatch(CharSequence, int, CharSequence) - Static method in class com.okta.commons.lang.Strings
-
Test whether the given string matches the given substring at the given index.
T
- toArray(Collection<T>, Class<T>) - Static method in class com.okta.commons.lang.Collections
- toArray(Enumeration<E>, A[]) - Static method in class com.okta.commons.lang.Collections
-
Marshal the elements from the given enumeration into an array of the given type.
- toIterator(Enumeration<E>) - Static method in class com.okta.commons.lang.Collections
-
Adapt an enumeration to an iterator.
- tokenizeToStringArray(String, String) - Static method in class com.okta.commons.lang.Strings
- tokenizeToStringArray(String, String, boolean, boolean) - Static method in class com.okta.commons.lang.Strings
- toLanguageTag(Locale) - Static method in class com.okta.commons.lang.Strings
-
Determine the RFC 3066 compliant language tag, as used for the HTTP "Accept-Language" header.
- toList(Collection<T>) - Static method in class com.okta.commons.lang.Collections
-
a new List that contains the specified elements or an empty collection if the elements are null or empty.
- toList(T...) - Static method in class com.okta.commons.lang.Collections
-
a new List that contains the specified elements or an empty collection if the elements are null or empty.
- toLocale(String) - Static method in class com.okta.commons.lang.Locales
-
Converts a String to a Locale.
- toObjectArray(Object) - Static method in class com.okta.commons.lang.Objects
-
Convert the given array (which may be a primitive array) to an object array (if necessary of primitive wrapper objects).
- toSet(E...) - Static method in class com.okta.commons.lang.Collections
-
Returns a new
Setthat contains the specified elements or an empty Set if the elements are null or empty. - toStringArray(Collection<String>) - Static method in class com.okta.commons.lang.Strings
-
Copy the given
Collectioninto aStringarray. - toStringArray(Enumeration<String>) - Static method in class com.okta.commons.lang.Strings
-
Copy the given Enumeration into a
Stringarray. - toUtcIso8601(Date) - Static method in class com.okta.commons.lang.Instants
-
Returns the UTC-normalized ISO 8601 representation of the specified date instance.
- trimAllWhitespace(String) - Static method in class com.okta.commons.lang.Strings
-
Trim all whitespace from the given
String: leading, trailing, and in between characters. - trimArrayElements(String[]) - Static method in class com.okta.commons.lang.Strings
-
Trim the elements of the given
Stringarray, callingString.trim()on each of them. - trimLeadingCharacter(String, char) - Static method in class com.okta.commons.lang.Strings
-
Trim all occurrences of the supplied leading character from the given
String. - trimLeadingWhitespace(String) - Static method in class com.okta.commons.lang.Strings
-
Trim leading whitespace from the given
String. - trimTrailingCharacter(String, char) - Static method in class com.okta.commons.lang.Strings
-
Trim all occurrences of the supplied trailing character from the given
String. - trimTrailingWhitespace(String) - Static method in class com.okta.commons.lang.Strings
-
Trim trailing whitespace from the given
String. - trimWhitespace(String) - Static method in class com.okta.commons.lang.Strings
-
Trim leading and trailing whitespace from the given
String.
U
- uncapitalize(String) - Static method in class com.okta.commons.lang.Strings
-
Uncapitalize a
String, changing the first letter to lower case as perCharacter.toLowerCase(char). - UnknownClassException - Exception Class in com.okta.commons.lang
-
A
RuntimeExceptionequivalent of the JDK'sClassNotFoundException, to maintain a RuntimeException paradigm. - UnknownClassException() - Constructor for exception class com.okta.commons.lang.UnknownClassException
-
Creates a new UnknownClassException.
- UnknownClassException(String) - Constructor for exception class com.okta.commons.lang.UnknownClassException
-
Constructs a new UnknownClassException.
- UnknownClassException(String, Throwable) - Constructor for exception class com.okta.commons.lang.UnknownClassException
-
Constructs a new UnknownClassException.
- UnknownClassException(Throwable) - Constructor for exception class com.okta.commons.lang.UnknownClassException
-
Constructs a new UnknownClassException.
- unqualify(String) - Static method in class com.okta.commons.lang.Strings
-
Unqualify a string qualified by a '.' dot character.
- unqualify(String, char) - Static method in class com.okta.commons.lang.Strings
-
Unqualify a string qualified by a separator character.
- uriDecode(String, Charset) - Static method in class com.okta.commons.lang.Strings
-
Decode the given encoded URI component value.
- UTC_TIMEZONE - Static variable in class com.okta.commons.lang.Instants
X
- XdgConfig - Class in com.okta.commons.lang
All Classes and Interfaces|All Packages|Serialized Form