001    package fj.pre;
002    
003    /**
004     * The comparison of two instances of a type may have one of three orderings; less than, equal or
005     * greater than.
006     *
007     * @version %build.number%<br>
008     *          <ul>
009     *          <li>$LastChangedRevision: 122 $</li>
010     *          <li>$LastChangedDate: 2009-04-25 08:24:38 +1000 (Sat, 25 Apr 2009) $</li>
011     *          </ul>
012     */
013    public enum Ordering {
014      /**
015       * Less than.
016       */
017      LT,
018    
019      /**
020       * Equal.
021       */
022      EQ,
023    
024      /**
025       * Greater than.
026       */
027      GT
028    }