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

com.neko233.config233.reader.api.ExcludeFileApi.kt Maven / Gradle / Ivy

The newest version!
package com.neko233.config233.reader.api

/**
 * 排除文件 API
 */
@JvmDefaultWithCompatibility
interface ExcludeFileApi {

    // 加载完成后
    fun isNotNeed(simpleFileNameFull: String): Boolean

    fun isNeed(simpleFileNameFull: String): Boolean {
        return !isNotNeed(simpleFileNameFull)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy