Package org.apache.uima.fit.validation
Interface CasValidationCheck
- All Superinterfaces:
- ValidationCheck
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
CAS validation check.
 
Note: Implementations of this class are typically singletons which are obtained through the Java Service Locator mechanism. This means that the implementations must be stateless to ensure that they can be used by multiple threads concurrently.
- 
Method SummaryModifier and TypeMethodDescriptionApply this check to the given CAS.Methods inherited from interface org.apache.uima.fit.validation.ValidationCheckfail, skip
- 
Method Details- 
validateApply this check to the given CAS.- Parameters:
- cas- the CAS to check.
- Returns:
- the results of the check.
- Throws:
- ValidationCheckException- if there was a problem performing the validation.
 
 
-