Object |
AlphabetChecker.cast(String value,
AttributeStatement attribute) |
This method will follow the rules set forth in the pdsdd and data
dictionary document for what is an allowable Alphabet value.
|
Object |
AlphaNumericChecker.cast(String value,
AttributeStatement attribute) |
This method will follow the rules set forth in the pdsdd and data
dictionary document for what is an allowable AlphaNumeric value.
|
Object |
CharacterChecker.cast(String value,
AttributeStatement attribute) |
This method will follow the rules set forth in the pdsdd and data
dictionary document for what is an allowable Character value.
|
Object |
ContextDependentChecker.cast(String value,
AttributeStatement attribute) |
This method does no checking right now and simply passes back the
original value.
|
Object |
DataSetChecker.cast(String value,
AttributeStatement attribute) |
This method does no checking right now and simply passes back the
original value.
|
Object |
DateChecker.cast(String value,
AttributeStatement attribute) |
|
Object |
DoubleChecker.cast(String value,
AttributeStatement attribute) |
|
Object |
IdentifierChecker.cast(String value,
AttributeStatement attribute) |
|
Object |
IntegerChecker.cast(String value,
AttributeStatement attribute) |
|
Object |
NonDecimalChecker.cast(String value,
AttributeStatement attribute) |
|
Object |
RealChecker.cast(String value,
AttributeStatement attribute) |
|
Object |
TimeChecker.cast(String value,
AttributeStatement attribute) |
|
Object |
TypeChecker.cast(String value,
AttributeStatement attribute) |
Tries to cast the value to the appropriate type and return the value
|
void |
LengthChecker.checkMaxLength(String value,
ElementDefinition def,
AttributeStatement attribute) |
|
void |
TypeChecker.checkMaxLength(String value,
ElementDefinition def,
AttributeStatement attribute) |
Checks to make sure that the value does not exceed the maximum length
|
void |
DoubleChecker.checkMaxValue(Number value,
ElementDefinition def,
AttributeStatement attribute) |
|
void |
IntegerChecker.checkMaxValue(Number value,
ElementDefinition def,
AttributeStatement attribute) |
|
void |
NonDecimalChecker.checkMaxValue(Number value,
ElementDefinition def,
AttributeStatement attribute) |
|
void |
NumericTypeChecker.checkMaxValue(Number value,
ElementDefinition def,
AttributeStatement attribute) |
|
void |
RealChecker.checkMaxValue(Number value,
ElementDefinition def,
AttributeStatement attribute) |
|
void |
LengthChecker.checkMinLength(String value,
ElementDefinition def,
AttributeStatement attribute) |
|
void |
TypeChecker.checkMinLength(String value,
ElementDefinition def,
AttributeStatement attribute) |
Checks to make sure that the value does fall below the minimum length
length
|
void |
DoubleChecker.checkMinValue(Number value,
ElementDefinition def,
AttributeStatement attribute) |
|
void |
IntegerChecker.checkMinValue(Number value,
ElementDefinition def,
AttributeStatement attribute) |
|
void |
NonDecimalChecker.checkMinValue(Number value,
ElementDefinition def,
AttributeStatement attribute) |
|
void |
NumericTypeChecker.checkMinValue(Number value,
ElementDefinition def,
AttributeStatement attribute) |
|
void |
RealChecker.checkMinValue(Number value,
ElementDefinition def,
AttributeStatement attribute) |
|