com.mayabot.nlp.common.Guava.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mynlp Show documentation
Show all versions of mynlp Show documentation
Maya Nlp subproject :mynlp
package com.mayabot.nlp.common
import java.util.ArrayList
fun checkNotNull(obj: Any?) {
kotlin.checkNotNull(obj)
}
object Lists{
@JvmStatic
fun newArrayList() : ArrayList{
return ArrayList()
}
}
object Maps{
@JvmStatic
fun newHashMap() : HashMap{
return java.util.HashMap()
}
@JvmStatic
fun newHashMap(from:Map) : HashMap{
return java.util.HashMap(from)
}
}