validator/src/main/java/de/kosit/validationtool/api/AcceptRecommendation.java
2020-03-20 11:20:14 +01:00

21 lines
476 B
Java

package de.kosit.validationtool.api;
/**
* Tri-state describtion of a Recommendation.
*/
public enum AcceptRecommendation {
/**
* The evaluation of the overall validation could not be computed.
*/
UNDEFINED,
/**
* Recommendation is to accept input based on the evaluation of the overall validation.
*/
ACCEPTABLE,
/**
* Recommendation is to reject input based on the evaluation of the overall validation.
*/
REJECT
}