()
| 384 | // Ordering<String> o = Ordering.<String>natural().reverse(); |
| 385 | |
| 386 | @GwtCompatible(serializable = true) |
| 387 | public <S extends T> Ordering<S> reverse() { |
| 388 | return new ReverseOrdering<S>(this); |
| 389 | } |
| 390 | |
| 391 | /** |
| 392 | * Returns an ordering that treats {@code null} as less than all other values |