Resource Base
Table of contents

Enumeration ValidationStatus

ValidationStatus describes the outcome of a validation process on a field.

@Retention(RetentionPolicy.CLASS)
public @interface EnumValidationStatus {
    //The field has no validation specified. 
    int VS_NONE = 0;
    //The validation for the field has been succeeded. 
    int VS_SUCCEEDED = 1;
    //The validation for the field has been failed. 
    int VS_FAILED = 2;
}

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: