Javolution 6.0.0 java
SortedSetService.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.SortedSet;
12
19
public
interface
SortedSetService
<E>
extends
SetService
<E>, SortedSet<E> {
20
21
@Override
22
SortedSetService<E>
headSet
(E toElement);
23
24
@Override
25
SortedSetService<E>
subSet
(E fromElement, E toElement);
26
27
@Override
28
SortedSetService<E>
tailSet
(E fromElement);
29
30
@Override
31
SortedSetService<E>
threadSafe
();
32
33
}
javolution.util.service.SortedSetService
Definition:
SortedSetService.java:19
javolution.util.service.SortedSetService.subSet
SortedSetService< E > subSet(E fromElement, E toElement)
javolution.util.service.SortedSetService.headSet
SortedSetService< E > headSet(E toElement)
javolution.util.service.SortedSetService.threadSafe
SortedSetService< E > threadSafe()
javolution.util.service.SortedSetService.tailSet
SortedSetService< E > tailSet(E fromElement)
javolution.util.service.SetService
Definition:
SetService.java:19
core-java
src
main
java
javolution
util
service
SortedSetService.java
Generated by
1.8.18