NumberAdapter.FloatAdapter.DEFAULT
The simplest FloatAdapter implementation that
represents the case when to argument object to adapt is a Float
object itself.
NumberCondition.FloatValue(
Float lowerBound,
Float upperBound,
NumberAdapter.FloatAdapter adapter)
A constructor, besides the NumberAdapter.FloatAdapter,
it also it takes two Float arguments, a lowerBound and
an upperBound, which means in its evaluation the values passed to it
must be equal to any these two Float values passed or
fall in between.
NumberCondition.FloatValue(
Float number,
NumberAdapter.FloatAdapter adapter)
A simple constructor, it takes only one Float argument
which means in its evaluation the values passed to it must be equal
to this Float value passed.