Skip navigation links
A C D E F G H I L M N O P Q R S T U X 

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 String to the given String array, returning a new array consisting of the input array contents plus the given String.
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 String array into a comma delimited String (i.e., CSV).
arrayToDelimitedString(Object[], String) - Static method in class com.okta.commons.lang.Strings
Convert a String array into a delimited String (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 per Character.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 Collection into a delimited String (e.g., CSV).
collectionToDelimitedString(Collection<?>, String, String, String) - Static method in class com.okta.commons.lang.Strings
Convert a Collection to a delimited String (e.g.
collectionToDelimitedString(Collection<?>, String) - Static method in class com.okta.commons.lang.Strings
Convert a Collection into a delimited String (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 String arrays into one, with overlapping array elements included twice.
contains(Iterator, Object) - Static method in class com.okta.commons.lang.Collections
Check whether the given Iterator contains the given element.
contains(Enumeration, Object) - Static method in class com.okta.commons.lang.Collections
Check whether the given Enumeration contains the given element.
containsAny(Collection, Collection) - Static method in class com.okta.commons.lang.Collections
Return true if any element in 'candidates' is contained in 'source'; otherwise returns false.
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 CharSequence contains any whitespace characters.
containsWhitespace(String) - Static method in class com.okta.commons.lang.Strings
Check whether the given String contains any whitespace characters.
convertDate(long, TimeZone, TimeZone) - Static method in class com.okta.commons.lang.Instants
Converts a given time from a TimeZone to 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 TimeZone to 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 sub in string str.

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 String that is a delimited list and convert it into a String array.
delimitedListToStringArray(String, String, String) - Static method in class com.okta.commons.lang.Strings
Take a String that is a delimited list and convert it into a String array.
doesNotContain(String, 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) - 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 String ends 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 null if 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 obj is not null; 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, using getResourceAsStream(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(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 null and not the empty String.
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 null and not the empty String.
hasLength(CharSequence) - Static method in class com.okta.commons.lang.Strings
Check that the given CharSequence is neither null nor of length 0.
hasLength(String) - Static method in class com.okta.commons.lang.Strings
Check that the given String is neither null nor of length 0.
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 null and must contain at least one non-whitespace character.
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 null and must contain at least one non-whitespace character.
hasText(CharSequence) - Static method in class com.okta.commons.lang.Strings
Check whether the given CharSequence contains actual text.
hasText(String) - Static method in class com.okta.commons.lang.Strings
Check whether the given String contains actual text.
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 in com.okta.commons.lang
 
InstantiationException(String, Throwable) - Constructor for exception 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 timezones and 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) is true.
isAssignable(Class, Class, String) - Static method in class com.okta.commons.lang.Assert
Assert that superType.isAssignableFrom(subType) is true.
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(Collection) - Static method in class com.okta.commons.lang.Collections
Return true if the supplied Collection is null or empty.
isEmpty(Map) - Static method in class com.okta.commons.lang.Collections
Return true if the supplied Map is null or empty.
isEmpty(Object[]) - Static method in class com.okta.commons.lang.Objects
Determine whether the given array is empty: i.e.
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 String is 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, String) - Static method in class com.okta.commons.lang.Assert
Assert that an object is null .
isNull(Object) - Static method in class com.okta.commons.lang.Assert
Assert that an object is null .
isTrue(boolean, String) - Static method in class com.okta.commons.lang.Assert
Assert a boolean expression, throwing IllegalArgumentException if the test result is false.
isTrue(boolean) - Static method in class com.okta.commons.lang.Assert
Assert a boolean expression, throwing IllegalArgumentException if the test result is false.

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 String arrays into one, with overlapping array elements only included once.

N

newInstance(String) - Static method in class com.okta.commons.lang.Classes
 
newInstance(String, Object...) - Static method in class com.okta.commons.lang.Classes
 
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
 
noNullElements(Object[], String) - Static method in class com.okta.commons.lang.Assert
Assert that an array has no null elements.
noNullElements(Object[]) - Static method in class com.okta.commons.lang.Assert
Assert that an array has no null elements.
notEmpty(Object[], String) - Static method in class com.okta.commons.lang.Assert
Assert that an array has elements; that is, it must not be null and must have at least one element.
notEmpty(Object[]) - Static method in class com.okta.commons.lang.Assert
Assert that an array has elements; that is, it must not be null and 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 null and 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 null and must have at least one element.
notEmpty(Map, String) - Static method in class com.okta.commons.lang.Assert
Assert that a Map has entries; that is, it must not be null and must have at least one entry.
notEmpty(Map) - Static method in class com.okta.commons.lang.Assert
Assert that a Map has entries; that is, it must not be null and must have at least one entry.
notNull(Object, String) - Static method in class com.okta.commons.lang.Assert
Assert that an object is not null .
notNull(Object) - 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 true if both are null or false if only one is null.
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.
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.
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.
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.

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 Date using the provided year.
of(int, int) - Static method in class com.okta.commons.lang.Instants
Creates an UTC-based Date from the provided year and month.
of(int, int, int) - Static method in class com.okta.commons.lang.Instants
Creates an UTC-based Date from the provided year, month and day Uses the current date and time, sets the specified year, month and day, and returns the Date converted to a UTC timestamp.
of(int, int, int, int) - Static method in class com.okta.commons.lang.Instants
Creates an UTC-based Date from the provided year, month, day and hour.
of(int, int, int, int, int) - Static method in class com.okta.commons.lang.Instants
Creates an UTC-based Date from the provided year, month, day, hour and minute.
of(int, int, int, int, int, int) - Static method in class com.okta.commons.lang.Instants
Creates an UTC-based Date from the provided year, month, day, hour, minute and second.
of(int, int, int, int, int, int, int) - Static method in class com.okta.commons.lang.Instants
Creates an UTC-based Date from the provided year, month, day, hour, minute and second.

P

parseLocaleString(String) - Static method in class com.okta.commons.lang.Strings
Parse the given localeString value into a Locale.
parseTimeZoneString(String) - Static method in class com.okta.commons.lang.Strings
Parse the given timeZoneString value into a TimeZone.
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 String with single quotes.
quoteIfString(Object) - Static method in class com.okta.commons.lang.Strings
Turn the given Object into a String with single quotes if it is a String; 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 0 if the collection is null.
size(Map) - Static method in class com.okta.commons.lang.Collections
Returns the map's size or 0 if the map is null.
sortStringArray(String[]) - Static method in class com.okta.commons.lang.Strings
Turn given source String array into sorted array.
split(String, String) - Static method in class com.okta.commons.lang.Strings
Split a String at 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 String starts with the specified prefix, ignoring upper/lower case.
state(boolean, String) - Static method in class com.okta.commons.lang.Assert
Assert a boolean expression, throwing IllegalStateException if the test result is false.
state(boolean) - Static method in class com.okta.commons.lang.Assert
Assert a boolean expression, throwing IllegalStateException if the test result is false.
Strings - Class in com.okta.commons.lang
Miscellaneous String utility 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(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.
toArray(Collection<T>, Class<T>) - Static method in class com.okta.commons.lang.Collections
 
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
Tokenize the given String into a String array via a StringTokenizer.
tokenizeToStringArray(String, String, boolean, boolean) - Static method in class com.okta.commons.lang.Strings
Tokenize the given String into a String array via a StringTokenizer.
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(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(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.
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 Set that 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 Collection into a String array.
toStringArray(Enumeration<String>) - Static method in class com.okta.commons.lang.Strings
Copy the given Enumeration into a String array.
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 String array, calling String.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 per Character.toLowerCase(char).
UnknownClassException - Exception in com.okta.commons.lang
A RuntimeException equivalent of the JDK's ClassNotFoundException, to maintain a RuntimeException paradigm.
UnknownClassException() - Constructor for exception com.okta.commons.lang.UnknownClassException
Creates a new UnknownClassException.
UnknownClassException(String) - Constructor for exception com.okta.commons.lang.UnknownClassException
Constructs a new UnknownClassException.
UnknownClassException(Throwable) - Constructor for exception com.okta.commons.lang.UnknownClassException
Constructs a new UnknownClassException.
UnknownClassException(String, Throwable) - Constructor for exception 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
 
A C D E F G H I L M N O P Q R S T U X 
Skip navigation links

Copyright © 2018-2022 Okta. All Rights Reserved.