| java.lang.Object org.zkoss.lang.Comparables
Comparables | final public class Comparables (Code) | | Utilities regarding Comparable type objects.
author: henrichen |
max | final public static Comparable max(Comparable a, Comparable b)(Code) | | Given two comparables, return the maximum of the two.
Note that the two Comparable must be with compatible type, or a
ClassCastException might be thrown.
|
min | final public static Comparable min(Comparable a, Comparable b)(Code) | | Given two comparables, return the minimum of the two.
Note that the two Comparable must be with compatible type, or a
ClassCastException might be thrown.
|
|
|