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

com.ecwid.apiclient.v3.dto.common.OrderedStringToListStringMap.kt Maven / Gradle / Ivy

package com.ecwid.apiclient.v3.dto.common

import java.util.*

class OrderedStringToListStringMap : TreeMap> {
	@Suppress("unused")
	constructor() : super()

	constructor(map: Map>?) {
		if (map != null) {
			putAll(map.map { e -> e.key to ArrayList(e.value) })
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy