cn.authing.core.GsonUtils.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-core Show documentation
Show all versions of java-core Show documentation
java backend sdk for authing
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