Package org.zkoss.lang
Class Comparables
- java.lang.Object
-
- org.zkoss.lang.Comparables
-
public final class Comparables extends java.lang.Object
Utilities regarding Comparable type objects.- Author:
- henrichen
-
-
Constructor Summary
Constructors Constructor Description Comparables()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.Comparable
max(java.lang.Comparable a, java.lang.Comparable b)
Given two comparables, return the maximum of the two.static java.lang.Comparable
min(java.lang.Comparable a, java.lang.Comparable b)
Given two comparables, return the minimum of the two.
-
-
-
Method Detail
-
min
public static final java.lang.Comparable min(java.lang.Comparable a, java.lang.Comparable b)
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.
-
max
public static final java.lang.Comparable max(java.lang.Comparable a, java.lang.Comparable b)
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.
-
-