Sort the keys alphabetically (ignoring case). Uses the value as a tie-breaker (only really possible with a key that has a case change). @webref intdict:method @brief Sort the keys alphabetically
()
| 642 | * @brief Sort the keys alphabetically |
| 643 | */ |
| 644 | public void sortKeys() { |
| 645 | sortImpl(true, false, true); |
| 646 | } |
| 647 | |
| 648 | /** |
| 649 | * Sort the keys alphabetically in reverse (ignoring case). Uses the value as a |