Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

We also show the definition of Order,  which defines the rules for sorting the recordswhich defines the rules for sorting the records.

Code Block
languagejava
public enum Order {
    /** Indicates an ascending order. */
    ASCENDING,

    /** Indicates a descending order. */
    DESCENDING
}

...