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

com.neko233.config233.reader.convert.impl.BooleanObjConvertTextValueStrategy.kt Maven / Gradle / Ivy

The newest version!
package com.neko233.config233.reader.convert.impl

import com.neko233.config233.reader.convert.JavaTypeConvertTextValueStrategy

class BooleanObjConvertTextValueStrategy : JavaTypeConvertTextValueStrategy {
    override fun dataType(): Class = Boolean::class.javaObjectType

    override fun convert(colValue: String): Boolean {
        return colValue.toBoolean()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy