commonMain.com.apollographql.apollo.api.ImmutableMapBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-api-jvm Show documentation
Show all versions of apollo-api-jvm Show documentation
Apollo GraphQL API classes
The newest version!
package com.apollographql.apollo.api
/**
* A helper class to make it easier to build Maps from the java codegen
*/
class ImmutableMapBuilder {
private val map: MutableMap = mutableMapOf()
fun put(key: K, value: V) = apply {
map[key] = value
}
fun build(): Map {
return map
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy