|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ValidationException | |
---|---|
com.bankframe.ejb | |
com.bankframe.util |
Uses of ValidationException in com.bankframe.ejb |
---|
Methods in com.bankframe.ejb that throw ValidationException | |
---|---|
void |
Validator.validate(Double data,
int errorNumber)
This method validates a Double for null. |
void |
Validator.validate(Integer data,
int errorNumber)
This method validates an Integer for null. |
void |
Validator.validate(String data,
int errorNumber,
int maxDataSize)
This method validates a piece of data for null and greater than a max length. |
void |
Validator.validateCharacters(String data,
int errorNumber)
This method checks if the data contains all characters (A-Z, a-z, and 0-9 ) and is not null. |
void |
Validator.validateDateString(String data,
int errorNumber)
This methog validates a String that represents a date. |
void |
Validator.validateDigits(String data,
int errorNumber)
This method checks if the data contains all digits and is not null. |
void |
Validator.validateExactLength(String data,
int errorNumber,
int exactSize)
This method validates if the data is the exact length specified. |
void |
Validator.validateForNull(Object data,
int errorNumber)
This method validates that the object is not null. |
void |
Validator.validatePastDateString(String data,
int errorNumber)
This method validates that a date string represents a date in the past with respect to the current system date. |
Uses of ValidationException in com.bankframe.util |
---|
Methods in com.bankframe.util that throw ValidationException | |
---|---|
Boolean |
Validator.checkForBoolean(String data,
int errorNumber)
Deprecated. Checks if a string is of the form "true" or "false". |
Double |
Validator.checkForDouble(String data,
int errorNumber)
Deprecated. Takes a string and converts it to a double object |
Float |
Validator.checkForFloat(String data,
int errorNumber)
Deprecated. Takes a string and converts it to a float object |
Integer |
Validator.checkForInteger(String data,
int errorNumber)
Deprecated. Takes a string and converts it to an Integer object |
Long |
Validator.checkForLong(String data,
int errorNumber)
Deprecated. Takes a string and converts it to an Long object |
boolean |
Validator.checkIfDateAfterOrEqual(String formattingPattern,
String to,
String from)
Deprecated. This method will check if a date is after or equal to another date |
boolean |
Validator.checkIfTimeGreaterOrEqual(String formattingPattern,
String time1,
String time2,
int errorNumber)
Deprecated. This method compares two times and checks if one is greater than the other |
static Date |
DateConvertor.convertStringToDate(String formattingPattern,
String date)
Deprecated. Method to convert a string object to a date object with no specified time If the formatting pattern is null, the date will be formatted based on the pattern supplied for the current Locale. |
static Date |
DateConvertor.convertStringToDate(String formattingPattern,
String date,
String time)
Deprecated. Method to convert a string object to a date object with a specified time. |
int |
Validator.dateCheck(String to,
String from)
Deprecated. Should use checkIfDateAfterOrEqual(String formattingpattern, String to, String from) |
void |
Validator.isDateMMMValid(String date,
int errorNumber)
Deprecated. This method will validate a date where the month is denoted as the first three characters of the month. |
void |
Validator.isDateMMValid(String date,
int errorNumber)
Deprecated. Validates date string with the month represented as a numeric character e.g 1/1/2000 |
void |
Validator.mandatoryValidation(String data,
int errorNumber)
Deprecated. Checks to make sure a string contains data i.e not null or length 0 |
void |
Validator.validate(Double data,
int errorNumber)
Deprecated. Validates a Double object for null. |
void |
Validator.validate(Integer data,
int errorNumber)
Deprecated. Validates an Integer object for null. |
void |
Validator.validate(String data,
int errorNumber,
int maxDataSize)
Deprecated. Validates a piece of data for null and greater than a max length. |
void |
Validator.validateCharacters(String data,
int errorNumber)
Deprecated. Check if the data contains all characters (A-Z, a-z, and 0-9 ) and is not null. |
void |
Validator.validateDateString(String data,
int errorNumber)
Deprecated. Should use isDateMMValid(String date, int errorNumber) |
void |
Validator.validateDateStringMMM(String data,
int errorNumber)
Deprecated. Should use isDateMMMValid(String date, int errorNumber) |
void |
Validator.validateDigits(String data,
int errorNumber)
Deprecated. Check if a piece of data contains all digits and is not null. |
void |
Validator.validateExactLength(String data,
int errorNumber,
int exactSize)
Deprecated. Validate if the data is the exact length specified. |
void |
Validator.validateForNull(Object data,
int errorNumber)
Deprecated. Validates that an object is not null. |
void |
Validator.validatePastDateString(String data,
int errorNumber)
Deprecated. Validate that a date string represents a date in the past with respect to the current system date. |
void |
Validator.validateTime(String data,
int errorNumber)
Deprecated. Should use validateTime(String formattingPattern, String time, int errorNumber) |
void |
Validator.validateTime(String formattingPattern,
String time,
int errorNumber)
Deprecated. This method validates a time string. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |