keySet method

Set<String> keySet()

Returns a Set containing the Strings used as keys in this Bundle.

@return a Set of String keys

Implementation

Set<String> keySet() {
  // unparcel();
  return _map.keys.toSet();
}