Sort the keys alphabetically in reverse (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 in reverse
()
| 642 | * @brief Sort the keys alphabetically in reverse |
| 643 | */ |
| 644 | public void sortKeysReverse() { |
| 645 | sortImpl(true, true, true); |
| 646 | } |
| 647 | |
| 648 | |
| 649 | /** |