-
- All Implemented Interfaces:
-
com.facebook.react.bridge.ReadableMap
public class ReadableNativeMap extends NativeMap implements ReadableMap
Implementation of a read-only map in native memory. This will generally be constructed and filled in native code so you shouldn't construct one yourself.
-
-
Method Summary
Modifier and Type Method Description static intgetJNIPassCounter()booleanhasKey(@NonNull() String name)booleanisNull(@NonNull() String name)booleangetBoolean(@NonNull() String name)doublegetDouble(@NonNull() String name)intgetInt(@NonNull() String name)StringgetString(@NonNull() String name)ReadableArraygetArray(@NonNull() String name)ReadableNativeMapgetMap(@NonNull() String name)ReadableTypegetType(@NonNull() String name)DynamicgetDynamic(@NonNull() String name)Iterator<Map.Entry<String, Object>>getEntryIterator()ReadableMapKeySetIteratorkeySetIterator()inthashCode()booleanequals(Object obj)HashMap<String, Object>toHashMap()-
-
Method Detail
-
getJNIPassCounter
static int getJNIPassCounter()
-
getBoolean
boolean getBoolean(@NonNull() String name)
-
getArray
@Nullable() ReadableArray getArray(@NonNull() String name)
-
getMap
@Nullable() ReadableNativeMap getMap(@NonNull() String name)
-
getType
@NonNull() ReadableType getType(@NonNull() String name)
-
getDynamic
@NonNull() Dynamic getDynamic(@NonNull() String name)
-
keySetIterator
@NonNull() ReadableMapKeySetIterator keySetIterator()
-
hashCode
int hashCode()
-
-
-
-