FnObject is a function hub class containing a lot of static methods to work with Objects in general.
| Function name | Type | Params | Description |
|---|---|---|---|
| between | Function<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. |
| between | Function<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. |
| between | Function<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. |
| between | Function<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. |
| between | Function<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. |
| between | Function<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. |
| between | Function<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. |
| eq | Function<Object,Boolean> | Object object | Determines whether the target object and the specified object are equal by calling the equals method on the target object. |
| eq | Function<Object,Boolean> | float object | Determines whether the target object and the specified object are equal by calling the equals method on the target object. |
| eq | Function<Object,Boolean> | double object | Determines whether the target object and the specified object are equal by calling the equals method on the target object. |
| eq | Function<Object,Boolean> | byte object | Determines whether the target object and the specified object are equal by calling the equals method on the target object. |
| eq | Function<Object,Boolean> | short object | Determines whether the target object and the specified object are equal by calling the equals method on the target object. |
| eq | Function<Object,Boolean> | int object | Determines whether the target object and the specified object are equal by calling the equals method on the target object. |
| eq | Function<Object,Boolean> | long object | Determines whether the target object and the specified object are equal by calling the equals method on the target object. |
| eq | Function<Object,Boolean> | boolean object | Determines whether the target object and the specified object are equal by calling the equals method on the target object. |
| eqBy | Function<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. |
| eqBy | Function<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. |
| eqBy | Function<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. |
| eqBy | Function<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. |
| eqBy | Function<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. |
| eqBy | Function<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. |
| eqBy | Function<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. |
| eqBy | Function<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. |
| eqValue | Function<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. |
| eqValue | Function<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. |
| eqValue | Function<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. |
| eqValue | Function<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. |
| eqValue | Function<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. |
| eqValue | Function<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. |
| eqValue | Function<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. |
| eqValue | Function<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. |
| eqValueBy | Function<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. |
| eqValueBy | Function<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. |
| eqValueBy | Function<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. |
| eqValueBy | Function<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. |
| eqValueBy | Function<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. |
| eqValueBy | Function<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. |
| eqValueBy | Function<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. |
| eqValueBy | Function<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. |
| greaterOrEqTo | Function<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. |
| greaterOrEqTo | Function<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. |
| greaterOrEqTo | Function<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. |
| greaterOrEqTo | Function<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. |
| greaterOrEqTo | Function<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. |
| greaterOrEqTo | Function<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. |
| greaterOrEqTo | Function<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. |
| greaterOrEqToBy | Function<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. |
| greaterOrEqToBy | Function<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. |
| greaterOrEqToBy | Function<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. |
| greaterOrEqToBy | Function<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. |
| greaterOrEqToBy | Function<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. |
| greaterOrEqToBy | Function<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. |
| greaterOrEqToBy | Function<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. |
| greaterThan | Function<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. |
| greaterThan | Function<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. |
| greaterThan | Function<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. |
| greaterThan | Function<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. |
| greaterThan | Function<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. |
| greaterThan | Function<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. |
| greaterThan | Function<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. |
| greaterThanBy | Function<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. |
| greaterThanBy | Function<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. |
| greaterThanBy | Function<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. |
| greaterThanBy | Function<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. |
| greaterThanBy | Function<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. |
| greaterThanBy | Function<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. |
| greaterThanBy | Function<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. |
| intoSingletonArrayOf | Function<T,T[]> | Type<T> type | Creates an array of the specified type with only the target object in it. |
| intoSingletonListOf | Function<T,List<T>> | Type<T> type | Creates a list of the specified type with only the target object in it. |
| intoSingletonSetOf | Function<T,Set<T>> | Type<T> type | Creates a set of the specified type with only the target object in it. |
| isNotNull | Function<Object,Boolean> | Determines whether the target object is null or not. | |
| isNotNullBy | Function<X,Boolean> | IFunction<X,?> by | Determines whether the result of executing the specified function on the target object is null or not. |
| isNull | Function<Object,Boolean> | Determines whether the target object is null or not. | |
| isNullBy | Function<X,Boolean> | IFunction<X,?> by | Determines whether the result of executing the specified function on the target object is null or not. |
| lessOrEqTo | Function<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. |
| lessOrEqTo | Function<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. |
| lessOrEqTo | Function<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. |
| lessOrEqTo | Function<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. |
| lessOrEqTo | Function<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. |
| lessOrEqTo | Function<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. |
| lessOrEqTo | Function<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. |
| lessOrEqToBy | Function<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. |
| lessOrEqToBy | Function<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. |
| lessOrEqToBy | Function<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. |
| lessOrEqToBy | Function<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. |
| lessOrEqToBy | Function<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. |
| lessOrEqToBy | Function<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. |
| lessOrEqToBy | Function<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. |
| lessThan | Function<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. |
| lessThan | Function<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. |
| lessThan | Function<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. |
| lessThan | Function<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. |
| lessThan | Function<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. |
| lessThan | Function<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. |
| lessThan | Function<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. |
| lessThanBy | Function<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. |
| lessThanBy | Function<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. |
| lessThanBy | Function<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. |
| lessThanBy | Function<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. |
| lessThanBy | Function<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. |
| lessThanBy | Function<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. |
| lessThanBy | Function<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. |
| notEq | Function<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. |
| notEq | Function<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. |
| notEq | Function<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. |
| notEq | Function<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. |
| notEq | Function<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. |
| notEq | Function<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. |
| notEq | Function<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. |
| notEq | Function<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. |
| notEqBy | Function<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. |
| notEqBy | Function<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. |
| notEqBy | Function<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. |
| notEqBy | Function<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. |
| notEqBy | Function<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. |
| notEqBy | Function<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. |
| notEqBy | Function<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. |
| notEqBy | Function<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. |
| notEqValue | Function<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. |
| notEqValue | Function<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. |
| notEqValue | Function<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. |
| notEqValue | Function<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. |
| notEqValue | Function<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. |
| notEqValue | Function<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. |
| notEqValue | Function<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. |
| notEqValue | Function<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. |
| notEqValueBy | Function<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. |
| notEqValueBy | Function<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. |
| notEqValueBy | Function<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. |
| notEqValueBy | Function<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. |
| notEqValueBy | Function<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. |
| notEqValueBy | Function<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. |
| notEqValueBy | Function<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. |
| notEqValueBy | Function<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. |
| replaceWith | Function<Object,T> | T object | Replaces the target object with the object specified as a parameter. |
| toStr | Function<Object,String> | Converts the target object to String using the default toString() method. | |
| toStrNullSafe | Function<Object,String> | Converts the target object to String using the default toString() method, returning null if target is null. | |