Package org.sqlproc.engine.validation
Interface SqlValidationResult<T>
-
public interface SqlValidationResult<T>
The generic interface definition for the validation result.For more information please see
SqlValidator
.- Author:
- Vladimir Hudec
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getMessage()
Returns the message for the validation result specific for the selected validator implementation.T
getResult()
Returns the validation result specific for the selected validator implementation.
-
-
-
Method Detail
-
getResult
T getResult()
Returns the validation result specific for the selected validator implementation.- Returns:
- the validation result
-
getMessage
String getMessage()
Returns the message for the validation result specific for the selected validator implementation.- Returns:
- the validation message result
-
-