Package 

Class EmptyReactNativeConfig

    • Method Summary

      Modifier and Type Method Description
      boolean getBool(String s) Get a boolean param by string name.
      long getInt64(String s) Get a Long param by string name.
      String getString(String s) Get a string param by string name.
      double getDouble(String s) Get a double param by string name.
      • Methods inherited from class com.facebook.react.fabric.ReactNativeConfig

        getBool, getDouble, getInt64, getString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getBool

         boolean getBool(String s)

        Get a boolean param by string name. Default should be false.

      • getInt64

         long getInt64(String s)

        Get a Long param by string name. Default should be 0.

      • getString

         String getString(String s)

        Get a string param by string name. Default should be "", empty string.

      • getDouble

         double getDouble(String s)

        Get a double param by string name. Default should be 0.