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
()
| 631 | * @brief Sort the keys alphabetically |
| 632 | */ |
| 633 | public void sortKeys() { |
| 634 | sortImpl(true, false, true); |
| 635 | } |
| 636 | |
| 637 | /** |
| 638 | * Sort the keys alphabetically in reverse (ignoring case). Uses the value as a |