A B C E G I K L M N O P R S T U V Y Z 
All Classes All Packages

A

appendQuery(String, String, Object) - Static method in class com.shaiksphere.mindsmine.jems.URLHelper
Appends content to the query string of a URL, handling logic for whether to place a question mark or ampersand.
areEqual(Object, Object) - Static method in class com.shaiksphere.mindsmine.jems.ObjectHelper
Returns true if the passed values are equal, false otherwise.
areEqual(String, String) - Static method in class com.shaiksphere.mindsmine.jems.StringHelper
Returns true if the passed values are equal, ignoring the case, false otherwise.
areEqual(String, String, boolean) - Static method in class com.shaiksphere.mindsmine.jems.StringHelper
Returns true if the passed values are equal, false otherwise.

B

BooleanHelper - Class in com.shaiksphere.mindsmine.jems
A collection of useful static methods to deal with booleans.

C

com.shaiksphere.mindsmine.jems - package com.shaiksphere.mindsmine.jems
Common utility methods (such as extensions to simple data type Java objects).
com.shaiksphere.mindsmine.jems.units - package com.shaiksphere.mindsmine.jems.units
Classes to provide a mechanism to handle various units (e.g., memory, etc.)
convert(int, int) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the first argument in the radix specified by the third argument from the radix specified by the second argument.
convert(String, int, int) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the first argument in the radix specified by the third argument from the radix specified by the second argument.
convertBinaryToDecimal(String) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the binary value as an unsigned integer in base 10.
convertBinaryToHexadecimal(String) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the binary value as an unsigned integer in base 16.
convertBinaryToOctal(String) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the binary value as an unsigned integer in base 8.
convertDecimalToBinary(int) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the integer argument as an unsigned integer in base 2.
convertDecimalToHexadecimal(int) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the integer argument as an unsigned integer in base 16.
convertDecimalToOctal(int) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the integer argument as an unsigned integer in base 8.
convertHexadecimalToBinary(String) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the hexadecimal value as an unsigned integer in base 2.
convertHexadecimalToDecimal(String) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the hexadecimal value as an unsigned integer in base 10.
convertHexadecimalToOctal(String) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the hexadecimal value as an unsigned integer in base 8.
convertOctalToBinary(String) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the octal value as an unsigned integer in base 2.
convertOctalToDecimal(String) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the octal value as an unsigned integer in base 10.
convertOctalToHexadecimal(String) - Static method in class com.shaiksphere.mindsmine.jems.NumeralSystemHelper
Returns a string representation of the octal value as an unsigned integer in base 16.

E

EXBI_BYTE - com.shaiksphere.mindsmine.jems.units.MemoryUnit
The exbibyte is a multiple of the unit byte for digital information.
extract(double) - Static method in enum com.shaiksphere.mindsmine.jems.units.MemoryUnit
Extracts the closest equivalent in Bytes.

G

getByteValue() - Method in enum com.shaiksphere.mindsmine.jems.units.MemoryUnit
Returns the number of bytes in the unit.
getNullSafe(Boolean) - Static method in class com.shaiksphere.mindsmine.jems.BooleanHelper
Returns a non-null boolean, even if the object being passed is a null boolean.
getNullSafe(Byte) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns a non-null byte, even if the object being passed is a null byte.
getNullSafe(Double) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns a non-null double, even if the object being passed is a null double.
getNullSafe(Float) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns a non-null float, even if the object being passed is a null float.
getNullSafe(Integer) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns a non-null integer, even if the object being passed is a null integer.
getNullSafe(Long) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns a non-null long, even if the object being passed is a null long.
getNullSafe(Short) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns a non-null short, even if the object being passed is a null short.
getNullSafe(String) - Static method in class com.shaiksphere.mindsmine.jems.StringHelper
Returns a non-null string, even if the object being passed is a null string.
getNumOfDigits(int) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns the number of digits in the passed in number.
getUniqueRandomNumbers(int, int) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns an array of pseudorandom int values between zero (inclusive) and the specified upper bound (exclusive).
getUniqueRandomNumbers(int, int, int) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns an array of pseudorandom int values between the specified lower bound (inclusive) and the specified upper bound (exclusive).
GIBI_BYTE - com.shaiksphere.mindsmine.jems.units.MemoryUnit
The gibibyte is a multiple of the unit byte for digital information.

I

isBlank(String) - Static method in class com.shaiksphere.mindsmine.jems.StringHelper
Returns true if the passed value is an empty string, false otherwise.
isOnlyDigits(String) - Static method in class com.shaiksphere.mindsmine.jems.StringHelper
Returns true if the passed string contains only digits, false otherwise.
isPalindrome(String) - Static method in class com.shaiksphere.mindsmine.jems.StringHelper
Returns true if the passed string is a palindrome, ignoring the case, false otherwise.
isPalindrome(String, boolean) - Static method in class com.shaiksphere.mindsmine.jems.StringHelper
Returns true if the passed string is a palindrome, false otherwise.
isPerfectSquare(Byte) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns true if number is a Perfect Square.
isPerfectSquare(Integer) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns true if number is a Perfect Square.
isPerfectSquare(Long) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns true if number is a Perfect Square.
isPerfectSquare(Short) - Static method in class com.shaiksphere.mindsmine.jems.NumberHelper
Returns true if number is a Perfect Square.
isValidURL(String) - Static method in class com.shaiksphere.mindsmine.jems.URLHelper
Returns true if the passed string is a valid URL, false otherwise.

K

KIBI_BYTE - com.shaiksphere.mindsmine.jems.units.MemoryUnit
The kibibyte is a multiple of the unit byte for digital information.

L

LATITUDE - Static variable in class com.shaiksphere.mindsmine.jems.RegExHelper
Represents the most generic regex pattern for the Latitude.
LONGITUDE - Static variable in class com.shaiksphere.mindsmine.jems.RegExHelper
Represents the most generic regex pattern for the Longitude.

M

MEBI_BYTE - com.shaiksphere.mindsmine.jems.units.MemoryUnit
The mebibyte is a multiple of the unit byte for digital information.
MemoryUnit - Enum in com.shaiksphere.mindsmine.jems.units
A collection of useful methods to deal with memory units.

N

NumberHelper - Class in com.shaiksphere.mindsmine.jems
A collection of useful static methods to deal with numbers.
NumeralSystemHelper - Class in com.shaiksphere.mindsmine.jems
A collection of useful static methods to deal with numeral system.

O

ObjectHelper - Class in com.shaiksphere.mindsmine.jems
A collection of useful static methods to deal with objects.

P

PEBI_BYTE - com.shaiksphere.mindsmine.jems.units.MemoryUnit
The pebibyte is a multiple of the unit byte for digital information.

R

RegExHelper - Class in com.shaiksphere.mindsmine.jems
A collection of useful static methods to deal with regular expressions.

S

StringHelper - Class in com.shaiksphere.mindsmine.jems
A collection of useful static methods to deal with strings.

T

TEBI_BYTE - com.shaiksphere.mindsmine.jems.units.MemoryUnit
The tebibyte is a multiple of the unit byte for digital information.
TIME_DISPLAY - Static variable in class com.shaiksphere.mindsmine.jems.RegExHelper
Represents the most general form of 24-hour time display format.

U

URLHelper - Class in com.shaiksphere.mindsmine.jems
A collection of useful static methods to deal with URLs.
US_PHONE_NUMBER - Static variable in class com.shaiksphere.mindsmine.jems.RegExHelper
Represents a stricter version of the United States (US) phone number.

V

valueOf(String) - Static method in enum com.shaiksphere.mindsmine.jems.units.MemoryUnit
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.shaiksphere.mindsmine.jems.units.MemoryUnit
Returns an array containing the constants of this enum type, in the order they are declared.

Y

YOBI_BYTE - com.shaiksphere.mindsmine.jems.units.MemoryUnit
The yobibyte is a multiple of the unit byte for digital information.

Z

ZEBI_BYTE - com.shaiksphere.mindsmine.jems.units.MemoryUnit
The zebibyte is a multiple of the unit byte for digital information.
A B C E G I K L M N O P R S T U V Y Z 
All Classes All Packages