Uses of Interface
org.inxar.affirm.Affirmation

Packages that use Affirmation
com.inxar.affirm XML-based implementation of Proclamation and various Affirmation types. 
 

Uses of Affirmation in com.inxar.affirm
 

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.
 

Methods in com.inxar.affirm that return Affirmation
protected  Affirmation XMLProclamation.create(org.w3c.dom.Element e)
           
protected  Affirmation XMLProclamation.createGeneral(org.w3c.dom.Element e, java.lang.Object key, boolean isFatal)
           
 

Methods in com.inxar.affirm with parameters of type Affirmation
 void AbstractProclamation.affirm(Affirmation affirmation)