package fj; /** * The comparison of two instances of a type may have one of three orderings; less than, equal or * greater than. * * @version %build.number% */ public enum Ordering { /** * Less than. */ LT, /** * Equal. */ EQ, /** * Greater than. */ GT }