List of utility methods to do SortedMap Type Check
boolean | isSortedMap(Object object) Returns true if the given Object is not null and a SortedMap derived type return isAssignableFromInstance(SortedMap.class, object); |
boolean | isSortedMapType(Class> type) Returns true if the given type is assignable to the SortedMap interface boolean retval = false; if (type != null) { retval = SortedMap.class.isAssignableFrom(type); return retval; |