Interface Validator<T>
- 
- Type Parameters:
 T- the return type of the validator's validate methods.
- All Known Implementing Classes:
 CvDefinitionValidationHandler,CvMappingValidator,MzTabBeanValidator,MzTabValidatingWriter.WriteAndParseValidator,MzTabValidator
public interface Validator<T>
Validator interface.
- Author:
 - nilshoffmann
 
 
- 
- 
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default List<ValidationMessage>validate(T t)validate. 
 - 
 
- 
- 
Method Detail
- 
validate
default List<ValidationMessage> validate(T t)
validate.
Please make sure that all exceptions are caught within the validate method!- Parameters:
 t- the object to validate.- Returns:
 - a 
Listobject. 
 
 - 
 
 -