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

cn.authing.core.GsonUtils.kt Maven / Gradle / Ivy

There is a newer version: 4.3.79
Show newest version
package cn.authing.core

import com.google.gson.TypeAdapterFactory

object GsonUtils {
    fun getIndex(list: List): Int {
        for (i in list.indices) {
            val factory = list[i]
            val aClass: Class = factory.javaClass
            if (aClass.name.contains("ObjectTypeAdapter")) {
                return i
            }
        }
        return 1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy