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

com.mayabot.nlp.common.Guava.kt Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
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)
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy