/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ package com.facebook.react.bridge import java.util.HashMap import kotlin.collections.Iterator import kotlin.collections.Map /** * Interface for a map that allows typed access to its members. Used to pass parameters from JS to * Kotlin. */ public interface ReadableMap { public val entryIterator: Iterator> public fun getArray(name: String): ReadableArray? public fun getBoolean(name: String): Boolean public fun getDouble(name: String): Double public fun getDynamic(name: String): Dynamic public fun getInt(name: String): Int public fun getLong(name: String): Long public fun getMap(name: String): ReadableMap? public fun getString(name: String): String? public fun getType(name: String): ReadableType public fun hasKey(name: String): Boolean public fun isNull(name: String): Boolean public fun keySetIterator(): ReadableMapKeySetIterator public fun toHashMap(): HashMap }