isNotLessThan

fun isNotLessThan(value: Double, minimumValue: Double): PropertyState<Double>(source)

Check if the Double value is not less than the given minimum value.

Return

property state com.zybber.to_state.Correct containing value if value is equal to or greater than minimumValue. Otherwise com.zybber.to_state.Incorrect.

Parameters

value

the value that must be equal to or greater than minimumValue.

minimumValue

the minimum value that value must be equal to or greater than.


fun isNotLessThan(value: Float, minimumValue: Float): PropertyState<Float>(source)

Check if the Float value is not less than the given minimum value.

Return

property state Correct containing value if value is equal to or greater than minimumValue. Otherwise Incorrect.

Parameters

value

the value that must be equal to or greater than minimumValue.

minimumValue

the minimum value that value must be equal to or greater than.


fun isNotLessThan(value: Int, minimumValue: Int): PropertyState<Int>(source)

Check if the Int value is not less than the given minimum value.

Return

property state Correct containing value if value is equal to or greater than minimumValue. Otherwise Incorrect.

Parameters

value

the value that must be equal to or greater than minimumValue.

minimumValue

the minimum value that value must be equal to or greater than.


fun isNotLessThan(value: Long, minimumValue: Long): PropertyState<Long>(source)

Check if the Long value is not less than the given minimum value.

Return

property state com.zybber.to_state.Correct containing value if value is equal to or greater than minimumValue. Otherwise com.zybber.to_state.Incorrect.

Parameters

value

the value that must be equal to or greater than minimumValue.

minimumValue

the minimum value that value must be equal to or greater than.