FnNumber is a function hub class containing a lot of static methods to work with Number objects. Those static methods return functions that deal with Number objects. Those functions include conversions to String, to String when the number represents a currency and rounding functions among others.
Function name | Type | Params | Description |
---|---|---|---|
between | Function<Number,Boolean> | Number min Number 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<Number,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<Number,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. |
between | Function<Number,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<Number,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<Number,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<Number,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. |
eq | Function<Number,Boolean> | Number object | Determines whether the target object and the specified object are equal by calling the equals method on the target object. |
eq | Function<Number,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<Number,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<Number,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<Number,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<Number,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<Number,Boolean> | long object | Determines whether the target object and the specified object are equal by calling the equals method on the target object. |
eqBy | Function<Number,Boolean> | IFunction<Number,?> by Number 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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. |
eqValue | Function<Number,Boolean> | Number 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<Number,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<Number,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<Number,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<Number,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<Number,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<Number,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. |
eqValueBy | Function<Number,Boolean> | IFunction<Number,?> by Number 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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. |
greaterOrEqTo | Function<Number,Boolean> | Number 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<Number,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<Number,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<Number,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<Number,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<Number,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<Number,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<Number,Boolean> | IFunction<Number,?> by Number 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | Number 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<Number,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<Number,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<Number,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<Number,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<Number,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<Number,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<Number,Boolean> | IFunction<Number,?> by Number 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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. |
isNotNull | Function<Number,Boolean> | Determines whether the target object is null or not. | |
isNull | Function<Number,Boolean> | Determines whether the target object is null or not. | |
lessOrEqTo | Function<Number,Boolean> | Number 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<Number,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<Number,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<Number,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<Number,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<Number,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<Number,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<Number,Boolean> | IFunction<Number,?> by Number 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | Number 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<Number,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<Number,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<Number,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<Number,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<Number,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<Number,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<Number,Boolean> | IFunction<Number,?> by Number 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | Number object | Determines whether the target object and the specified object are NOT equal by calling the equals method on the target object. |
notEq | Function<Number,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<Number,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<Number,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<Number,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<Number,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<Number,Boolean> | long object | Determines whether the target object and the specified object are NOT equal by calling the equals method on the target object. |
notEqBy | Function<Number,Boolean> | IFunction<Number,?> by Number 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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. |
notEqValue | Function<Number,Boolean> | Number 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<Number,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<Number,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<Number,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<Number,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<Number,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<Number,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. |
notEqValueBy | Function<Number,Boolean> | IFunction<Number,?> by Number 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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<Number,Boolean> | IFunction<Number,?> 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. |
roundBigDecimal | Function<BigDecimal,BigDecimal> | int scale RoundingMode roundingMode | It rounds the target object with the specified scale and rounding mode |
roundDouble | Function<Double,Double> | int scale RoundingMode roundingMode | It rounds the target object with the specified scale and rounding mode |
roundFloat | Function<Float,Float> | int scale RoundingMode roundingMode | It rounds the target with the specified scale and rounding mode |
toBigDecimal | Function<Number,BigDecimal> | It converts the input into a BigDecimal | |
toBigDecimal | Function<Number,BigDecimal> | int scale RoundingMode roundingMode | It converts the input into a BigDecimal using the given scale and RoundingMode |
toBigInteger | Function<Number,BigInteger> | It converts the input into a BigInteger | |
toBigInteger | Function<Number,BigInteger> | RoundingMode roundingMode | It converts the input into a BigInteger using the given RoundingMode |
toBoolean | Function<Number,Boolean> | It converts the input into a Boolean | |
toByte | Function<Number,Byte> | It converts the input into a Byte | |
toByte | Function<Number,Byte> | RoundingMode roundingMode | It converts the input into a Byte using the given RoundingMode |
toCurrencyStr | Function<Number,String> | It returns the String representation of the target as a currency in the default Locale | |
toCurrencyStr | Function<Number,String> | boolean groupingUsed | It returns the String representation of the target as a currency in the default Locale |
toCurrencyStr | Function<Number,String> | Locale locale | It returns the String representation of the target as a currency in the given Locale |
toCurrencyStr | Function<Number,String> | String locale | It returns the String representation of the target as a currency in the given locale |
toCurrencyStr | Function<Number,String> | Locale locale boolean groupingUsed | It returns the String representation of the target as a currency in the given Locale |
toCurrencyStr | Function<Number,String> | String locale boolean groupingUsed | It returns the String representation of the target as a currency in the given locale |
toCurrencyStr | Function<Number,String> | Locale locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed | It returns the String representation of the target as a currency in the given Locale. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toCurrencyStr(Locale.UK, 3, 2, 2, true) would return 1,000.00 if target number is 1000toCurrencyStr(Locale.UK, 2, 2, 4, true) would return 00.00 if target number is 0 |
toCurrencyStr | Function<Number,String> | String locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed | It returns the String representation of the target as a currency in the given locale taking into account the given parameters. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toCurrencyStr(Locale.UK.toString(), 3, 2, 2, true) would return 1,000.00 if target number is 1000toCurrencyStr(Locale.UK.toString(), 2, 2, 4, true) would return 00.00 if target number is 0 |
toCurrencyStr | Function<Number,String> | Locale locale int minIntegerDigits int minFractionDigits int maxFractionDigits char groupingSeparator char decimalSeparator boolean decimalSeparatorAlwaysShown | It returns the String representation of the target as a currency in the given Locale taking into account the given parameters. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toCurrencyStr(Locale.UK, 3, 2, 2, ',', ',', true) would return 1,000,00 if target number is 1000toCurrencyStr(Locale.UK, 2, 2, 4, ',', ',', true) would return 00,00 if target number is 0 |
toCurrencyStr | Function<Number,String> | Locale locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed char decimalSeparator boolean decimalSeparatorAlwaysShown | It returns the String representation of the target as a currency in the given Locale taking into account the given parameters. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toCurrencyStr(Locale.UK.toString(), 3, 2, 2, ',', ',', true) would return 1,000,00 if target number is 1000toCurrencyStr(Locale.UK.toString(), 2, 2, 4, ',', ',', true) would return 00,00 if target number is 0 |
toCurrencyStr | Function<Number,String> | String locale int minIntegerDigits int minFractionDigits int maxFractionDigits char groupingSeparator char decimalSeparator boolean decimalSeparatorAlwaysShown | It returns the String representation of the target as a currency in the given locale taking into account the given parameters. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toCurrencyStr(Locale.UK, 3, 2, 2, ',', ',', true) would return 1,000,00 if target number is 1000toCurrencyStr(Locale.UK, 2, 2, 4, ',', ',', true) would return 00,00 if target number is 0 |
toCurrencyStr | Function<Number,String> | String locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed char decimalSeparator boolean decimalSeparatorAlwaysShown | It returns the String representation of the target as a currency in the given locale taking into account the given parameters. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toCurrencyStr(Locale.UK.toString(), 3, 2, 2, ',', ',', true) would return 1,000,00 if target number is 1000toCurrencyStr(Locale.UK.toString(), 2, 2, 4, ',', ',', true) would return 00,00 if target number is 0 |
toDouble | Function<Number,Double> | It converts the target into a Double | |
toDouble | Function<Number,Double> | int scale RoundingMode roundingMode | It converts the input into a Double using the given scale and RoundingMode |
toFloat | Function<Number,Float> | It converts the input into a Float | |
toFloat | Function<Number,Float> | int scale RoundingMode roundingMode | It converts the target object into a Float using the given scale and RoundingMode |
toInteger | Function<Number,Integer> | It converts the target into an Integer | |
toInteger | Function<Number,Integer> | RoundingMode roundingMode | It converts the input into an Integer using the given RoundingMode |
toLong | Function<Number,Long> | It converts the input into a Long | |
toLong | Function<Number,Long> | RoundingMode roundingMode | It converts the input into a Long using the given RoundingMode |
toPercentStr | Function<Number,String> | A String representing a percentage is created from the target number. | |
toPercentStr | Function<Number,String> | boolean groupingUsed | A String representing a percentage is created from the target number either using grouping or not depending on the given parameter. So, toPercentStr(true) would return 100,000% if target number is 1000toPercentStr(false) would return 100000% if target number is 1000 |
toPercentStr | Function<Number,String> | Locale locale | A String representing a percentage is created from the target number in the given Locale |
toPercentStr | Function<Number,String> | String locale | A String representing a percentage is created from the target number in the given locale |
toPercentStr | Function<Number,String> | Locale locale boolean groupingUsed | A String representing a percentage is created from the target number in the given Locale. Grouping will be used depending on the value of the groupingUsed parameter. |
toPercentStr | Function<Number,String> | String locale boolean groupingUsed | A String representing a percentage is created from the target number in the given locale. Grouping will be used depending on the value of the groupingUsed parameter. |
toPercentStr | Function<Number,String> | Locale locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed | A String representing a percentage is created from the target number in the given Locale. If necessary, it will add leading or trailing zeros to the string based on the given parameters. |
toPercentStr | Function<Number,String> | String locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed | A String representing a percentage is created from the target number in the given locale. If necessary, it will add leading or trailing zeros to the string based on the given parameters. |
toPercentStr | Function<Number,String> | Locale locale int minIntegerDigits int minFractionDigits int maxFractionDigits char groupingSeparator char decimalSeparator boolean decimalSeparatorAlwaysShown | A String representing a percentage is created from the target number in the given Locale and using the other given parameters as well. If necessary, it will add leading or trailing zeros to the string based on the given parameters. |
toPercentStr | Function<Number,String> | Locale locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed char decimalSeparator boolean decimalSeparatorAlwaysShown | A String representing a percentage is created from the target number in the given locale and using the other given parameters as well. If necessary, it will add leading or trailing zeros to the string based on the given parameters. |
toPercentStr | Function<Number,String> | String locale int minIntegerDigits int minFractionDigits int maxFractionDigits char groupingSeparator char decimalSeparator boolean decimalSeparatorAlwaysShown | A String representing a percentage is created from the target number in the given locale and using the other given parameters as well. If necessary, it will add leading or trailing zeros to the string based on the given parameters. |
toPercentStr | Function<Number,String> | String locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed char decimalSeparator boolean decimalSeparatorAlwaysShown | A String representing a percentage is created from the target number in the given locale and using the other given parameters as well. If necessary, it will add leading or trailing zeros to the string based on the given parameters. |
toShort | Function<Number,Short> | It converts the input into a Short | |
toShort | Function<Number,Short> | RoundingMode roundingMode | It converts the target into a Short using the given RoundingMode |
toStr | Function<Number,String> | It returns the String representation of the input number | |
toStr | Function<Number,String> | boolean groupingUsed | It returns the String representation of the input number either using or not using grouping |
toStr | Function<Number,String> | Locale locale | It returns the String representation of the target number in the given Locale |
toStr | Function<Number,String> | String locale | It returns the String representation of the target number in the given locale |
toStr | Function<Number,String> | Locale locale boolean groupingUsed | It returns the String representation of the target number in the given Locale. Grouping will be used depending on the value of the groupingUsed parameter |
toStr | Function<Number,String> | String locale boolean groupingUsed | It returns the String representation of the target number in the given locale. Grouping will be used depending on the value of the groupingUsed parameter |
toStr | Function<Number,String> | Locale locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed | It returns the String representation of the target number in the given Locale. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toStr(Locale.ENGLISH, 3, 2, 2, true) would return 010.00 if target number is 10toStr(Locale.ENGLISH, 2, 2, 4, true) would return 00.00 if target number is 0 |
toStr | Function<Number,String> | String locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed | It returns the String representation of the target number in the given locale. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toStr(Locale.ENGLISH.toString(), 3, 2, 2, true) would return 010.00 if target number is 10toStr(Locale.ENGLISH.toString(), 2, 2, 4, true) would return 00.00 if target number is 0 |
toStr | Function<Number,String> | Locale locale int minIntegerDigits int minFractionDigits int maxFractionDigits char groupingSeparator char decimalSeparator boolean decimalSeparatorAlwaysShown | It returns the String representation of the target number in the given Locale. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toStr(Locale.ENGLISH, 3, 2, 2, ',', '.', true) would return 1,000.00 if target number is 1000toStr(Locale.ENGLISH, 2, 2, 4, ',', '.', true) would return 00.00 if target number is 0 |
toStr | Function<Number,String> | Locale locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed char decimalSeparator boolean decimalSeparatorAlwaysShown | It returns the String representation of the target number in the given Locale. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toStr(Locale.ENGLISH, 3, 2, 2, true, ',', true) would return 1,000,00 if target number is 1000toStr(Locale.ENGLISH, 2, 2, 4, true, ',', true) would return 00,00 if target number is 0 |
toStr | Function<Number,String> | String locale int minIntegerDigits int minFractionDigits int maxFractionDigits char groupingSeparator char decimalSeparator boolean decimalSeparatorAlwaysShown | It returns the String representation of the target number in the given locale. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toStr(Locale.ENGLISH.toString(), 3, 2, 2, ',', '.', true) would return 1,000.00 if target number is 1000toStr(Locale.ENGLISH.toString(), 2, 2, 4, ',', '.', true) would return 00.00 if target number is 0 |
toStr | Function<Number,String> | String locale int minIntegerDigits int minFractionDigits int maxFractionDigits boolean groupingUsed char decimalSeparator boolean decimalSeparatorAlwaysShown | It returns the String representation of the target number in the given locale. If necessary, it will add leading or trailing zeros to the string based on the given parameters. So, toStr(Locale.ENGLISH.toString(), 3, 2, 2, true, ',', true) would return 1,000,00 if target number is 1000toStr(Locale.ENGLISH.toString(), 2, 2, 4, true, ',', true) would return 00,00 if target number is 0 |