A C D E G H I K M N O P S T X

A

AbstractAffirmation - class com.inxar.affirm.AbstractAffirmation.
Base class for Affirmation implementations.
AbstractAffirmation(Object, String, boolean) - Constructor for class com.inxar.affirm.AbstractAffirmation
 
AbstractProclamation - class com.inxar.affirm.AbstractProclamation.
Base class for Proclamation implementations.
AbstractProclamation() - Constructor for class com.inxar.affirm.AbstractProclamation
 
affirm(Affirmation) - Method in class com.inxar.affirm.AbstractProclamation
 
affirm(Object) - Method in interface org.inxar.affirm.Affirmation
Evaluates the given Input for validity.
affirm(Object) - Method in class com.inxar.affirm.AffirmCreditCard
 
affirm(Object) - Method in class com.inxar.affirm.AffirmChar
 
affirm(Object) - Method in class com.inxar.affirm.AffirmType
 
affirm(Object) - Method in class com.inxar.affirm.AffirmDoubleRange
 
affirm(Object) - Method in class com.inxar.affirm.AffirmString
 
affirm(Object) - Method in class com.inxar.affirm.AffirmBoolean
 
affirm(Object) - Method in class com.inxar.affirm.AffirmStringLength
 
affirm(Object) - Method in class com.inxar.affirm.AffirmShort
 
affirm(Object) - Method in class com.inxar.affirm.AffirmLong
 
affirm(Object) - Method in class com.inxar.affirm.AffirmExists
 
affirm(Object) - Method in class com.inxar.affirm.AffirmIntegralRange
 
affirm(Object) - Method in class com.inxar.affirm.AffirmByte
 
affirm(Object) - Method in class com.inxar.affirm.AffirmMatch
 
affirm(Object) - Method in class com.inxar.affirm.AffirmInt
 
affirm(Object) - Method in class com.inxar.affirm.AffirmDouble
 
affirm(Object) - Method in class com.inxar.affirm.AffirmFloat
 
Affirmation - interface org.inxar.affirm.Affirmation.
The Affirmation interface is a central concept to the design of this package as it encapsulates a single unit of work towards the verification of values given under predetermined keys in an Input object.
AffirmationException - exception org.inxar.affirm.AffirmationException.
AffirmationException are thrown by Affirmation implementations if and when the input they are affirming is discovered to be invalid.
AffirmationException(String, boolean) - Constructor for class org.inxar.affirm.AffirmationException
Contructs a new exception with an error message (eventually headed to a Detail in typical usage), the key, the value of (the bad data) itself, and the aforementioned flag.
AffirmBoolean - class com.inxar.affirm.AffirmBoolean.
Affirmation implementation which checks that the value associated with a certain key is a valid Boolean object.
AffirmBoolean(Object) - Constructor for class com.inxar.affirm.AffirmBoolean
 
AffirmBoolean(Object, boolean) - Constructor for class com.inxar.affirm.AffirmBoolean
 
AffirmBoolean(Object, String, boolean) - Constructor for class com.inxar.affirm.AffirmBoolean
 
AffirmByte - class com.inxar.affirm.AffirmByte.
Affirmation implementation which checks that the value associated with a certain key is a valid Byte object.
AffirmByte(Object) - Constructor for class com.inxar.affirm.AffirmByte
 
AffirmByte(Object, boolean) - Constructor for class com.inxar.affirm.AffirmByte
 
AffirmByte(Object, String, boolean) - Constructor for class com.inxar.affirm.AffirmByte
 
AffirmChar - class com.inxar.affirm.AffirmChar.
Affirmation implementation which checks that the value associated with a certain key is a valid Character object.
AffirmChar(Object) - Constructor for class com.inxar.affirm.AffirmChar
 
AffirmChar(Object, boolean) - Constructor for class com.inxar.affirm.AffirmChar
 
AffirmChar(Object, String, boolean) - Constructor for class com.inxar.affirm.AffirmChar
 
AffirmCreditCard - class com.inxar.affirm.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.
AffirmCreditCard(Object, boolean, String) - Constructor for class com.inxar.affirm.AffirmCreditCard
 
AffirmCreditCard(Object, String) - Constructor for class com.inxar.affirm.AffirmCreditCard
 
AffirmCreditCard(Object, String, boolean, String) - Constructor for class com.inxar.affirm.AffirmCreditCard
 
AffirmDouble - class com.inxar.affirm.AffirmDouble.
Affirmation implementation which checks that the value associated with a certain key is a valid Double object.
AffirmDouble(Object) - Constructor for class com.inxar.affirm.AffirmDouble
 
AffirmDouble(Object, boolean) - Constructor for class com.inxar.affirm.AffirmDouble
 
AffirmDouble(Object, String, boolean) - Constructor for class com.inxar.affirm.AffirmDouble
 
AffirmDoubleRange - class com.inxar.affirm.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.
AffirmDoubleRange(Object, boolean, double, double) - Constructor for class com.inxar.affirm.AffirmDoubleRange
 
AffirmDoubleRange(Object, double, double) - Constructor for class com.inxar.affirm.AffirmDoubleRange
 
AffirmDoubleRange(Object, String, boolean, double, double) - Constructor for class com.inxar.affirm.AffirmDoubleRange
 
AffirmExists - class com.inxar.affirm.AffirmExists.
Affirmation implementation which checks that the value associated with a certain key is not null.
AffirmExists(Object) - Constructor for class com.inxar.affirm.AffirmExists
 
AffirmExists(Object, boolean) - Constructor for class com.inxar.affirm.AffirmExists
 
AffirmExists(Object, String, boolean) - Constructor for class com.inxar.affirm.AffirmExists
 
AffirmFloat - class com.inxar.affirm.AffirmFloat.
Affirmation implementation which checks that the value associated with a certain key is a valid Float object.
AffirmFloat(Object) - Constructor for class com.inxar.affirm.AffirmFloat
 
AffirmFloat(Object, boolean) - Constructor for class com.inxar.affirm.AffirmFloat
 
AffirmFloat(Object, String, boolean) - Constructor for class com.inxar.affirm.AffirmFloat
 
AffirmInt - class com.inxar.affirm.AffirmInt.
Affirmation implementation which checks that the value associated with a certain key is a valid Integer object.
AffirmInt(Object) - Constructor for class com.inxar.affirm.AffirmInt
 
AffirmInt(Object, boolean) - Constructor for class com.inxar.affirm.AffirmInt
 
AffirmInt(Object, String, boolean) - Constructor for class com.inxar.affirm.AffirmInt
 
AffirmIntegralRange - class com.inxar.affirm.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.
AffirmIntegralRange(Object, boolean, int, int) - Constructor for class com.inxar.affirm.AffirmIntegralRange
 
AffirmIntegralRange(Object, int, int) - Constructor for class com.inxar.affirm.AffirmIntegralRange
 
AffirmIntegralRange(Object, String, boolean, int, int) - Constructor for class com.inxar.affirm.AffirmIntegralRange
 
AffirmLong - class com.inxar.affirm.AffirmLong.
Affirmation implementation which checks that the value associated with a certain key is a valid Long object.
AffirmLong(Object) - Constructor for class com.inxar.affirm.AffirmLong
 
AffirmLong(Object, boolean) - Constructor for class com.inxar.affirm.AffirmLong
 
AffirmLong(Object, String, boolean) - Constructor for class com.inxar.affirm.AffirmLong
 
AffirmMatch - class com.inxar.affirm.AffirmMatch.
Affirmation implementation which checks that the value associated with a certain key is a valid String which matches the given regular expression.
AffirmMatch(Object, boolean, String) - Constructor for class com.inxar.affirm.AffirmMatch
 
AffirmMatch(Object, String) - Constructor for class com.inxar.affirm.AffirmMatch
 
AffirmMatch(Object, String, boolean, String) - Constructor for class com.inxar.affirm.AffirmMatch
 
AffirmShort - class com.inxar.affirm.AffirmShort.
Affirmation implementation which checks that the value associated with a certain key is a valid Short object.
AffirmShort(Object) - Constructor for class com.inxar.affirm.AffirmShort
 
AffirmShort(Object, boolean) - Constructor for class com.inxar.affirm.AffirmShort
 
AffirmShort(Object, String, boolean) - Constructor for class com.inxar.affirm.AffirmShort
 
AffirmString - class com.inxar.affirm.AffirmString.
Affirmation implementation which checks that the value associated with a certain key is a valid String object.
AffirmString(Object) - Constructor for class com.inxar.affirm.AffirmString
 
AffirmString(Object, boolean) - Constructor for class com.inxar.affirm.AffirmString
 
AffirmString(Object, String, boolean) - Constructor for class com.inxar.affirm.AffirmString
 
AffirmStringLength - class com.inxar.affirm.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.
AffirmStringLength(Object, boolean, int, int) - Constructor for class com.inxar.affirm.AffirmStringLength
 
AffirmStringLength(Object, int, int) - Constructor for class com.inxar.affirm.AffirmStringLength
 
AffirmStringLength(Object, String, boolean, int, int) - Constructor for class com.inxar.affirm.AffirmStringLength
 
AffirmType - class com.inxar.affirm.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.
AffirmType(Object, String) - Constructor for class com.inxar.affirm.AffirmType
 
AffirmType(Object, String, boolean, Class) - Constructor for class com.inxar.affirm.AffirmType
 
AffirmType(Object, String, String) - Constructor for class com.inxar.affirm.AffirmType
 

A C D E G H I K M N O P S T X