putInt method

void putInt(
  1. String key,
  2. int value
)

Inserts an int value into the mapping of this Bundle, replacing any existing value for the given key.

@param key a String, or null @param value an int

Implementation

void putInt(String key, int value) {
  // unparcel();
  _map[key] = value;
}