Home | History | Annotate | Download | only in compose

Lines Matching refs:entryValue

2639             final Object entryValue = entry.getValue();
2641 if (entryValue instanceof String) {
2642 methodExtras.putString(key, (String)entryValue);
2643 } else if (entryValue instanceof Boolean) {
2644 methodExtras.putBoolean(key, (Boolean)entryValue);
2645 } else if (entryValue instanceof Integer) {
2646 methodExtras.putInt(key, (Integer)entryValue);
2647 } else if (entryValue instanceof Long) {
2648 methodExtras.putLong(key, (Long)entryValue);
2651 entryValue.getClass().getName());