Javolution 6.0.0 java
SortedMapService.java
Go to the documentation of this file.
1 /*
2  * Javolution - Java(TM) Solution for Real-Time and Embedded Systems
3  * Copyright (C) 2012 - Javolution (http://javolution.org/)
4  * All rights reserved.
5  *
6  * Permission to use, copy, modify, and distribute this software is
7  * freely granted, provided that this notice is preserved.
8  */
9 package javolution.util.service;
10 
11 import java.util.Map;
12 import java.util.SortedMap;
13 
20 public interface SortedMapService<K, V> extends MapService<K, V>,
21  SortedMap<K, V> {
22 
23  @Override
24  SortedSetService<Map.Entry<K, V>> entrySet();
25 
26  @Override
28 
29  @Override
31 
32  @Override
33  SortedMapService<K, V> subMap(K fromKey, K toKey);
34 
35  @Override
37 
38  @Override
40 
41 }
javolution.util.service.SortedMapService.tailMap
SortedMapService< K, V > tailMap(K fromKey)
javolution.util.service.SortedSetService
Definition: SortedSetService.java:19
javolution.util.service.SortedMapService.headMap
SortedMapService< K, V > headMap(K toKey)
javolution.util.service.SortedMapService.entrySet
SortedSetService< Map.Entry< K, V > > entrySet()
javolution.util.service.SortedMapService.keySet
SortedSetService< K > keySet()
javolution.util.service.SortedMapService
Definition: SortedMapService.java:21
javolution.util.service.MapService
Definition: MapService.java:27
javolution.util.service.SortedMapService.subMap
SortedMapService< K, V > subMap(K fromKey, K toKey)
javolution.util.service.SortedMapService.threadSafe
SortedMapService< K, V > threadSafe()