Arturo Bernal

Results 109 issues of Arturo Bernal

Create a new method that split a string into an array of fixed-length elements

Checks whether the given String is a hex number. * NumberUtils.isHexNumber(null)) = false * NumberUtils.isHexNumber("")) = false * NumberUtils.isHexNumber("0x12345678")) = true * NumberUtils.isHexNumber("0x7fffffffffffffff")) = true * NumberUtils.isHexNumber("0x7FFFFFFFFFFFFFFF")) = true *...

The idea it's have a function that check if a given throwable is a checked exception. There are some similar function in ConcurrentUtils, but have package visibility and return the...

Determine whether the given field is a "public static final" constant.

Determine whether the given class has a public constructor with the given signature, checking accessibility.

Add methods ClassUtils to get the class names type in a null-safe manner: - getTypeName(Class) - getTypeName(Object) - getTypeName(Class, String) - getTypeName(Object, String)

Create a new method that Converts the String to a Character using the first character, returning a default value if null or empty is passed in.