Classes in com.inxar.affirm that implement Affirmation |
class |
AbstractAffirmation
Base class for Affirmation implementations. |
class |
AffirmBoolean
Affirmation implementation which checks that the value
associated with a certain key is a valid Boolean
object. |
class |
AffirmByte
Affirmation implementation which checks that the value
associated with a certain key is a valid Byte
object. |
class |
AffirmChar
Affirmation implementation which checks that the value
associated with a certain key is a valid Character
object. |
class |
AffirmCreditCard
Affirmation implementation which checks that the value
associated with a certain key is a valid credit card number as
checked by the Luhn check digit algorithm. |
class |
AffirmDouble
Affirmation implementation which checks that the value
associated with a certain key is a valid Double
object. |
class |
AffirmDoubleRange
Affirmation implementation which checks that the value
associated with a certain key is a valid Double within
(inclusive) the given high and lo values. |
class |
AffirmExists
Affirmation implementation which checks that the value
associated with a certain key is not null . |
class |
AffirmFloat
Affirmation implementation which checks that the value
associated with a certain key is a valid Float
object. |
class |
AffirmInt
Affirmation implementation which checks that the value
associated with a certain key is a valid Integer
object. |
class |
AffirmIntegralRange
Affirmation implementation which checks that the value
associated with a certain key is a valid Integer within
(inclusive) the given high and lo values. |
class |
AffirmLong
Affirmation implementation which checks that the value
associated with a certain key is a valid Long
object. |
class |
AffirmMatch
Affirmation implementation which checks that the value
associated with a certain key is a valid String which
matches the given regular expression. |
class |
AffirmShort
Affirmation implementation which checks that the value
associated with a certain key is a valid Short
object. |
class |
AffirmString
Affirmation implementation which checks that the value
associated with a certain key is a valid String
object. |
class |
AffirmStringLength
Affirmation implementation which checks that the value
associated with a certain key is a valid String object
having legnth inclusive to the give min and max values. |
class |
AffirmType
Affirmation implementation which checks that the value
associated with a certain key has a type compatible with the given
Class as determined by the
java.lang.Class.isInstance(Object) method. |