Sha256: 39276d72fb585a7dd8ec3ec39d435dba6e34266ca301931b44be1c40872c351a
Contents?: true
Size: 613 Bytes
Versions: 119
Compression:
Stored size: 613 Bytes
Contents
/* * Javolution - Java(TM) Solution for Real-Time and Embedded Systems * Copyright (C) 2005 - Javolution (http://javolution.org/) * All rights reserved. * * Permission to use, copy, modify, and distribute this software is * freely granted, provided that this notice is preserved. */ package j2me.util; import j2me.util.Map; import j2me.util.Comparator; public interface SortedMap extends Map { Comparator comparator(); SortedMap subMap(Object fromKey, Object toKey); SortedMap headMap(Object toKey); SortedMap tailMap(Object fromKey); Object firstKey(); Object lastKey(); }
Version data entries
119 entries across 119 versions & 1 rubygems