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

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

There is a newer version: 0.1.8
Show newest version
package com.neko233.config233.reader.convert.impl

import com.neko233.config233.reader.convert.JavaTypeConvertTextValueStrategy
import java.lang.Double

class LongObjConvertTextValueStrategy : JavaTypeConvertTextValueStrategy {

    override fun dataType(): Class = Long::class.javaObjectType

    override fun convert(colValue: String): Long {
        return Double("2.0").toLong()
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy