OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SortedSetMultimap
(Results
1 - 4
of
4
) sorted by null
/external/guava/src/com/google/common/collect/
SortedSetMultimap.java
46
public interface
SortedSetMultimap
<K, V> extends SetMultimap<K, V> {
55
* <p>Because a {@code
SortedSetMultimap
} has unique sorted values for a given
64
* <p>Because a {@code
SortedSetMultimap
} has unique sorted values for a given
74
* <p>Because a {@code
SortedSetMultimap
} has unique sorted values for a given
AbstractSortedSetMultimap.java
28
* Basic implementation of the {@link
SortedSetMultimap
} interface. It's a
37
extends AbstractSetMultimap<K, V> implements
SortedSetMultimap
<K, V> {
Multimaps.java
288
* Creates a new {@code
SortedSetMultimap
} that uses the provided map and
323
public static <K, V>
SortedSetMultimap
<K, V> newSortedSetMultimap(
663
extends UnmodifiableSetMultimap<K, V> implements
SortedSetMultimap
<K, V> {
664
UnmodifiableSortedSetMultimap(
SortedSetMultimap
<K, V> delegate) {
667
@Override public
SortedSetMultimap
<K, V> delegate() {
668
return (
SortedSetMultimap
<K, V>) super.delegate();
727
* Returns a synchronized (thread-safe) {@code
SortedSetMultimap
} backed by
738
public static <K, V>
SortedSetMultimap
<K, V>
739
synchronizedSortedSetMultimap(
SortedSetMultimap
<K, V> multimap) {
740
return Synchronized.
sortedSetMultimap
(multimap, null)
[
all
...]
Synchronized.java
879
public static <K, V>
SortedSetMultimap
<K, V>
sortedSetMultimap
(
880
SortedSetMultimap
<K, V> multimap, @Nullable Object mutex) {
884
/** @see Synchronized#
sortedSetMultimap
*/
886
extends SynchronizedSetMultimap<K, V> implements
SortedSetMultimap
<K, V> {
888
SortedSetMultimap
<K, V> delegate, @Nullable Object mutex) {
891
@Override protected
SortedSetMultimap
<K, V> delegate() {
892
return (
SortedSetMultimap
<K, V>) super.delegate();
[
all
...]
Completed in 29 milliseconds