All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sportradar.unifiedodds.sdk.impl.ValidationResult Maven / Gradle / Ivy

/*
 * Copyright (C) Sportradar AG. See LICENSE for full license governing this code
 */

package com.sportradar.unifiedodds.sdk.impl;

/**
 * Defines possible validation results
 */
public enum ValidationResult {
    /**
     * The validation was successful, the validated object is valid
     */
    Success,

    /**
     * The validation detected some minor issues, but the validated object can still be used for further processing
     */
    ProblemsDetected,

    /**
     * The validation failed, the validated object is not valid
     */
    Failure
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy