Functions: FnObject

1. Overview

FnObject is a function hub class containing a lot of static methods to work with Objects in general.

2. Functions

Function nameTypeParamsDescription
betweenFunction<Object,Boolean>Object min
Object max

Determines whether the target object is between min and max in value, this is, whether target.compareTo(min) >= 0 && target.compareTo(max) <= 0. The target and the specified min and max have to implement Comparable.

betweenFunction<Object,Boolean>float min
float max

Determines whether the target object is between min and max in value, this is, whether target.compareTo(min) >= 0 && target.compareTo(max) <= 0. The target and the specified min and max have to implement Comparable.

betweenFunction<Object,Boolean>int min
int max

Determines whether the target object is between min and max in value, this is, whether target.compareTo(min) >= 0 && target.compareTo(max) <= 0. The target and the specified min and max have to implement Comparable.

betweenFunction<Object,Boolean>byte min
byte max

Determines whether the target object is between min and max in value, this is, whether target.compareTo(min) >= 0 && target.compareTo(max) <= 0. The target and the specified min and max have to implement Comparable.

betweenFunction<Object,Boolean>double min
double max

Determines whether the target object is between min and max in value, this is, whether target.compareTo(min) >= 0 && target.compareTo(max) <= 0. The target and the specified min and max have to implement Comparable.

betweenFunction<Object,Boolean>long min
long max

Determines whether the target object is between min and max in value, this is, whether target.compareTo(min) >= 0 && target.compareTo(max) <= 0. The target and the specified min and max have to implement Comparable.

betweenFunction<Object,Boolean>short min
short max

Determines whether the target object is between min and max in value, this is, whether target.compareTo(min) >= 0 && target.compareTo(max) <= 0. The target and the specified min and max have to implement Comparable.

eqFunction<Object,Boolean>Object object

Determines whether the target object and the specified object are equal by calling the equals method on the target object.

eqFunction<Object,Boolean>float object

Determines whether the target object and the specified object are equal by calling the equals method on the target object.

eqFunction<Object,Boolean>double object

Determines whether the target object and the specified object are equal by calling the equals method on the target object.

eqFunction<Object,Boolean>byte object

Determines whether the target object and the specified object are equal by calling the equals method on the target object.

eqFunction<Object,Boolean>short object

Determines whether the target object and the specified object are equal by calling the equals method on the target object.

eqFunction<Object,Boolean>int object

Determines whether the target object and the specified object are equal by calling the equals method on the target object.

eqFunction<Object,Boolean>long object

Determines whether the target object and the specified object are equal by calling the equals method on the target object.

eqFunction<Object,Boolean>boolean object

Determines whether the target object and the specified object are equal by calling the equals method on the target object.

eqByFunction<X,Boolean>IFunction<X,?> by
Object object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal by calling the equals method.

eqByFunction<X,Boolean>IFunction<X,?> by
float object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal by calling the equals method.

eqByFunction<X,Boolean>IFunction<X,?> by
double object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal by calling the equals method.

eqByFunction<X,Boolean>IFunction<X,?> by
byte object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal by calling the equals method.

eqByFunction<X,Boolean>IFunction<X,?> by
short object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal by calling the equals method.

eqByFunction<X,Boolean>IFunction<X,?> by
int object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal by calling the equals method.

eqByFunction<X,Boolean>IFunction<X,?> by
long object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal by calling the equals method.

eqByFunction<X,Boolean>IFunction<X,?> by
boolean object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal by calling the equals method.

eqValueFunction<Object,Boolean>Object object

Determines whether the target object and the specified object are equal in value, this is, whether target.compareTo(object) == 0. Both the target and the specified object have to implement Comparable.

eqValueFunction<Object,Boolean>float object

Determines whether the target object and the specified object are equal in value, this is, whether target.compareTo(object) == 0. Both the target and the specified object have to implement Comparable.

eqValueFunction<Object,Boolean>double object

Determines whether the target object and the specified object are equal in value, this is, whether target.compareTo(object) == 0. Both the target and the specified object have to implement Comparable.

eqValueFunction<Object,Boolean>byte object

Determines whether the target object and the specified object are equal in value, this is, whether target.compareTo(object) == 0. Both the target and the specified object have to implement Comparable.

eqValueFunction<Object,Boolean>short object

Determines whether the target object and the specified object are equal in value, this is, whether target.compareTo(object) == 0. Both the target and the specified object have to implement Comparable.

eqValueFunction<Object,Boolean>int object

Determines whether the target object and the specified object are equal in value, this is, whether target.compareTo(object) == 0. Both the target and the specified object have to implement Comparable.

eqValueFunction<Object,Boolean>long object

Determines whether the target object and the specified object are equal in value, this is, whether target.compareTo(object) == 0. Both the target and the specified object have to implement Comparable.

eqValueFunction<Object,Boolean>boolean object

Determines whether the target object and the specified object are equal in value, this is, whether target.compareTo(object) == 0. Both the target and the specified object have to implement Comparable.

eqValueByFunction<X,Boolean>IFunction<X,?> by
Object object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal in value, this is, whether functionResult.compareTo(object) == 0. Both the function result and the specified object have to implement Comparable.

eqValueByFunction<X,Boolean>IFunction<X,?> by
float object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal in value, this is, whether functionResult.compareTo(object) == 0. Both the function result and the specified object have to implement Comparable.

eqValueByFunction<X,Boolean>IFunction<X,?> by
double object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal in value, this is, whether functionResult.compareTo(object) == 0. Both the function result and the specified object have to implement Comparable.

eqValueByFunction<X,Boolean>IFunction<X,?> by
byte object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal in value, this is, whether functionResult.compareTo(object) == 0. Both the function result and the specified object have to implement Comparable.

eqValueByFunction<X,Boolean>IFunction<X,?> by
short object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal in value, this is, whether functionResult.compareTo(object) == 0. Both the function result and the specified object have to implement Comparable.

eqValueByFunction<X,Boolean>IFunction<X,?> by
int object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal in value, this is, whether functionResult.compareTo(object) == 0. Both the function result and the specified object have to implement Comparable.

eqValueByFunction<X,Boolean>IFunction<X,?> by
long object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal in value, this is, whether functionResult.compareTo(object) == 0. Both the function result and the specified object have to implement Comparable.

eqValueByFunction<X,Boolean>IFunction<X,?> by
boolean object

Determines whether the result of executing the specified function on the target object and the specified object parameter are equal in value, this is, whether functionResult.compareTo(object) == 0. Both the function result and the specified object have to implement Comparable.

greaterOrEqToFunction<Object,Boolean>Object object

Determines whether the target object is greater or equal to the specified object in value, this is, whether target.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToFunction<Object,Boolean>float object

Determines whether the target object is greater or equal to the specified object in value, this is, whether target.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToFunction<Object,Boolean>double object

Determines whether the target object is greater or equal to the specified object in value, this is, whether target.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToFunction<Object,Boolean>byte object

Determines whether the target object is greater or equal to the specified object in value, this is, whether target.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToFunction<Object,Boolean>short object

Determines whether the target object is greater or equal to the specified object in value, this is, whether target.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToFunction<Object,Boolean>int object

Determines whether the target object is greater or equal to the specified object in value, this is, whether target.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToFunction<Object,Boolean>long object

Determines whether the target object is greater or equal to the specified object in value, this is, whether target.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToByFunction<X,Boolean>IFunction<X,?> by
Object object

Determines whether the result of executing the specified function on the target object is greater or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToByFunction<X,Boolean>IFunction<X,?> by
float object

Determines whether the result of executing the specified function on the target object is greater or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToByFunction<X,Boolean>IFunction<X,?> by
double object

Determines whether the result of executing the specified function on the target object is greater or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToByFunction<X,Boolean>IFunction<X,?> by
byte object

Determines whether the result of executing the specified function on the target object is greater or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToByFunction<X,Boolean>IFunction<X,?> by
short object

Determines whether the result of executing the specified function on the target object is greater or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToByFunction<X,Boolean>IFunction<X,?> by
int object

Determines whether the result of executing the specified function on the target object is greater or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterOrEqToByFunction<X,Boolean>IFunction<X,?> by
long object

Determines whether the result of executing the specified function on the target object is greater or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) >= 0. Both the target and the specified object have to implement Comparable.

greaterThanFunction<Object,Boolean>Object object

Determines whether the target object is greater than the specified object in value, this is, whether target.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanFunction<Object,Boolean>float object

Determines whether the target object is greater than the specified object in value, this is, whether target.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanFunction<Object,Boolean>double object

Determines whether the target object is greater than the specified object in value, this is, whether target.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanFunction<Object,Boolean>byte object

Determines whether the target object is greater than the specified object in value, this is, whether target.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanFunction<Object,Boolean>short object

Determines whether the target object is greater than the specified object in value, this is, whether target.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanFunction<Object,Boolean>int object

Determines whether the target object is greater than the specified object in value, this is, whether target.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanFunction<Object,Boolean>long object

Determines whether the target object is greater than the specified object in value, this is, whether target.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanByFunction<X,Boolean>IFunction<X,?> by
Object object

Determines whether the result of executing the specified function on the target object is greater than the specified object parameter in value, this is, whether functionResult.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanByFunction<X,Boolean>IFunction<X,?> by
float object

Determines whether the result of executing the specified function on the target object is greater than the specified object parameter in value, this is, whether functionResult.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanByFunction<X,Boolean>IFunction<X,?> by
double object

Determines whether the result of executing the specified function on the target object is greater than the specified object parameter in value, this is, whether functionResult.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanByFunction<X,Boolean>IFunction<X,?> by
byte object

Determines whether the result of executing the specified function on the target object is greater than the specified object parameter in value, this is, whether functionResult.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanByFunction<X,Boolean>IFunction<X,?> by
short object

Determines whether the result of executing the specified function on the target object is greater than the specified object parameter in value, this is, whether functionResult.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanByFunction<X,Boolean>IFunction<X,?> by
int object

Determines whether the result of executing the specified function on the target object is greater than the specified object parameter in value, this is, whether functionResult.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

greaterThanByFunction<X,Boolean>IFunction<X,?> by
long object

Determines whether the result of executing the specified function on the target object is greater than the specified object parameter in value, this is, whether functionResult.compareTo(object) > 0. Both the target and the specified object have to implement Comparable.

intoSingletonArrayOfFunction<T,T[]>Type<T> type

Creates an array of the specified type with only the target object in it.

intoSingletonListOfFunction<T,List<T>>Type<T> type

Creates a list of the specified type with only the target object in it.

intoSingletonSetOfFunction<T,Set<T>>Type<T> type

Creates a set of the specified type with only the target object in it.

isNotNullFunction<Object,Boolean>

Determines whether the target object is null or not.

isNotNullByFunction<X,Boolean>IFunction<X,?> by

Determines whether the result of executing the specified function on the target object is null or not.

isNullFunction<Object,Boolean>

Determines whether the target object is null or not.

isNullByFunction<X,Boolean>IFunction<X,?> by

Determines whether the result of executing the specified function on the target object is null or not.

lessOrEqToFunction<Object,Boolean>Object object

Determines whether the target object is less or equal to the specified object in value, this is, whether target.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToFunction<Object,Boolean>float object

Determines whether the target object is less or equal to the specified object in value, this is, whether target.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToFunction<Object,Boolean>double object

Determines whether the target object is less or equal to the specified object in value, this is, whether target.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToFunction<Object,Boolean>byte object

Determines whether the target object is less or equal to the specified object in value, this is, whether target.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToFunction<Object,Boolean>short object

Determines whether the target object is less or equal to the specified object in value, this is, whether target.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToFunction<Object,Boolean>int object

Determines whether the target object is less or equal to the specified object in value, this is, whether target.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToFunction<Object,Boolean>long object

Determines whether the target object is less or equal to the specified object in value, this is, whether target.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToByFunction<X,Boolean>IFunction<X,?> by
Object object

Determines whether the result of executing the specified function on the target object is less or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToByFunction<X,Boolean>IFunction<X,?> by
float object

Determines whether the result of executing the specified function on the target object is less or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToByFunction<X,Boolean>IFunction<X,?> by
double object

Determines whether the result of executing the specified function on the target object is less or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToByFunction<X,Boolean>IFunction<X,?> by
byte object

Determines whether the result of executing the specified function on the target object is less or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToByFunction<X,Boolean>IFunction<X,?> by
short object

Determines whether the result of executing the specified function on the target object is less or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToByFunction<X,Boolean>IFunction<X,?> by
int object

Determines whether the result of executing the specified function on the target object is less or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessOrEqToByFunction<X,Boolean>IFunction<X,?> by
long object

Determines whether the result of executing the specified function on the target object is less or equal to the specified object parameter in value, this is, whether functionResult.compareTo(object) <= 0. Both the target and the specified object have to implement Comparable.

lessThanFunction<Object,Boolean>Object object

Determines whether the target object is less than the specified object in value, this is, whether target.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanFunction<Object,Boolean>float object

Determines whether the target object is less than the specified object in value, this is, whether target.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanFunction<Object,Boolean>double object

Determines whether the target object is less than the specified object in value, this is, whether target.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanFunction<Object,Boolean>byte object

Determines whether the target object is less than the specified object in value, this is, whether target.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanFunction<Object,Boolean>short object

Determines whether the target object is less than the specified object in value, this is, whether target.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanFunction<Object,Boolean>int object

Determines whether the target object is less than the specified object in value, this is, whether target.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanFunction<Object,Boolean>long object

Determines whether the target object is less than the specified object in value, this is, whether target.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanByFunction<X,Boolean>IFunction<X,?> by
Object object

Determines whether the result of executing the specified function on the target object is less than the specified object parameter in value, this is, whether functionResult.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanByFunction<X,Boolean>IFunction<X,?> by
float object

Determines whether the result of executing the specified function on the target object is less than the specified object parameter in value, this is, whether functionResult.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanByFunction<X,Boolean>IFunction<X,?> by
double object

Determines whether the result of executing the specified function on the target object is less than the specified object parameter in value, this is, whether functionResult.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanByFunction<X,Boolean>IFunction<X,?> by
byte object

Determines whether the result of executing the specified function on the target object is less than the specified object parameter in value, this is, whether functionResult.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanByFunction<X,Boolean>IFunction<X,?> by
short object

Determines whether the result of executing the specified function on the target object is less than the specified object parameter in value, this is, whether functionResult.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanByFunction<X,Boolean>IFunction<X,?> by
int object

Determines whether the result of executing the specified function on the target object is less than the specified object parameter in value, this is, whether functionResult.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

lessThanByFunction<X,Boolean>IFunction<X,?> by
long object

Determines whether the result of executing the specified function on the target object is less than the specified object parameter in value, this is, whether functionResult.compareTo(object) < 0. Both the target and the specified object have to implement Comparable.

notEqFunction<Object,Boolean>Object object

Determines whether the target object and the specified object are NOT equal by calling the equals method on the target object.

notEqFunction<Object,Boolean>float object

Determines whether the target object and the specified object are NOT equal by calling the equals method on the target object.

notEqFunction<Object,Boolean>double object

Determines whether the target object and the specified object are NOT equal by calling the equals method on the target object.

notEqFunction<Object,Boolean>byte object

Determines whether the target object and the specified object are NOT equal by calling the equals method on the target object.

notEqFunction<Object,Boolean>short object

Determines whether the target object and the specified object are NOT equal by calling the equals method on the target object.

notEqFunction<Object,Boolean>int object

Determines whether the target object and the specified object are NOT equal by calling the equals method on the target object.

notEqFunction<Object,Boolean>long object

Determines whether the target object and the specified object are NOT equal by calling the equals method on the target object.

notEqFunction<Object,Boolean>boolean object

Determines whether the target object and the specified object are NOT equal by calling the equals method on the target object.

notEqByFunction<X,Boolean>IFunction<X,?> by
Object object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal by calling the equals method.

notEqByFunction<X,Boolean>IFunction<X,?> by
float object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal by calling the equals method.

notEqByFunction<X,Boolean>IFunction<X,?> by
double object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal by calling the equals method.

notEqByFunction<X,Boolean>IFunction<X,?> by
byte object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal by calling the equals method.

notEqByFunction<X,Boolean>IFunction<X,?> by
short object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal by calling the equals method.

notEqByFunction<X,Boolean>IFunction<X,?> by
int object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal by calling the equals method.

notEqByFunction<X,Boolean>IFunction<X,?> by
long object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal by calling the equals method.

notEqByFunction<X,Boolean>IFunction<X,?> by
boolean object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal by calling the equals method.

notEqValueFunction<Object,Boolean>Object object

Determines whether the target object and the specified object are NOT equal in value, this is, whether target.compareTo(object) != 0. Both the target and the specified object have to implement Comparable.

notEqValueFunction<Object,Boolean>float object

Determines whether the target object and the specified object are NOT equal in value, this is, whether target.compareTo(object) != 0. Both the target and the specified object have to implement Comparable.

notEqValueFunction<Object,Boolean>double object

Determines whether the target object and the specified object are NOT equal in value, this is, whether target.compareTo(object) != 0. Both the target and the specified object have to implement Comparable.

notEqValueFunction<Object,Boolean>byte object

Determines whether the target object and the specified object are NOT equal in value, this is, whether target.compareTo(object) != 0. Both the target and the specified object have to implement Comparable.

notEqValueFunction<Object,Boolean>short object

Determines whether the target object and the specified object are NOT equal in value, this is, whether target.compareTo(object) != 0. Both the target and the specified object have to implement Comparable.

notEqValueFunction<Object,Boolean>int object

Determines whether the target object and the specified object are NOT equal in value, this is, whether target.compareTo(object) != 0. Both the target and the specified object have to implement Comparable.

notEqValueFunction<Object,Boolean>long object

Determines whether the target object and the specified object are NOT equal in value, this is, whether target.compareTo(object) != 0. Both the target and the specified object have to implement Comparable.

notEqValueFunction<Object,Boolean>boolean object

Determines whether the target object and the specified object are NOT equal in value, this is, whether target.compareTo(object) != 0. Both the target and the specified object have to implement Comparable.

notEqValueByFunction<X,Boolean>IFunction<X,?> by
Object object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal in value, this is, whether functionResult.compareTo(object) != 0. Both the function result and the specified object have to implement Comparable.

notEqValueByFunction<X,Boolean>IFunction<X,?> by
float object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal in value, this is, whether functionResult.compareTo(object) != 0. Both the function result and the specified object have to implement Comparable.

notEqValueByFunction<X,Boolean>IFunction<X,?> by
double object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal in value, this is, whether functionResult.compareTo(object) != 0. Both the function result and the specified object have to implement Comparable.

notEqValueByFunction<X,Boolean>IFunction<X,?> by
byte object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal in value, this is, whether functionResult.compareTo(object) != 0. Both the function result and the specified object have to implement Comparable.

notEqValueByFunction<X,Boolean>IFunction<X,?> by
short object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal in value, this is, whether functionResult.compareTo(object) != 0. Both the function result and the specified object have to implement Comparable.

notEqValueByFunction<X,Boolean>IFunction<X,?> by
int object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal in value, this is, whether functionResult.compareTo(object) != 0. Both the function result and the specified object have to implement Comparable.

notEqValueByFunction<X,Boolean>IFunction<X,?> by
long object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal in value, this is, whether functionResult.compareTo(object) != 0. Both the function result and the specified object have to implement Comparable.

notEqValueByFunction<X,Boolean>IFunction<X,?> by
boolean object

Determines whether the result of executing the specified function on the target object and the specified object parameter are NOT equal in value, this is, whether functionResult.compareTo(object) != 0. Both the function result and the specified object have to implement Comparable.

replaceWithFunction<Object,T>T object

Replaces the target object with the object specified as a parameter.

toStrFunction<Object,String>

Converts the target object to String using the default toString() method.

toStrNullSafeFunction<Object,String>

Converts the target object to String using the default toString() method, returning null if target is null.