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