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

commonMain.com.saveourtool.save.validation.Validatable.kt Maven / Gradle / Ivy

The newest version!
/**
 * Module that defines an interface for objects validation.
 */

package com.saveourtool.save.validation

/**
 * [Validatable] should be implemented by all the classes where we need validation
 */
interface Validatable {
    /**
     * @return true if object is valid, false otherwise
     */
    @Suppress("FUNCTION_BOOLEAN_PREFIX")
    fun validate(): Boolean = true
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy