-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSortedIntegerList.java
43 lines (36 loc) · 1.71 KB
/
SortedIntegerList.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* SortedIntegerList.java
* @author Frank Hildesheim, Leipzig 2018 (c), <[email protected]>
* Last change: 2018 Oct 29
* ==================================================================================================================================================
*/
import java.util.Collection;
import java.util.HashMap;
import java.util.SortedMap;
import java.util.TreeMap;
//===================================================================================================================================================
// Klasse 'SortedStringList'
//===================================================================================================================================================
public class SortedIntegerList extends HashMap<Integer, String> {
//
private static final long serialVersionUID = 1L;
//===============================================================================================================================================
// Konstruktor
//===============================================================================================================================================
public SortedIntegerList() {
super();
}
//===============================================================================================================================================
// Methode 'values'
//===============================================================================================================================================
@Override
public Collection<String> values() {
// New SortedMap
SortedMap<Integer, String> sortedValues = new TreeMap<>(this);
// Return Values
return (sortedValues.values());
}
}
//
// End SortedIntegerList.java
//