Example usage for com.google.common.collect Multisets unmodifiableSortedMultiset

List of usage examples for com.google.common.collect Multisets unmodifiableSortedMultiset

Introduction

In this page you can find the example usage for com.google.common.collect Multisets unmodifiableSortedMultiset.

Prototype

@Beta
public static <E> SortedMultiset<E> unmodifiableSortedMultiset(SortedMultiset<E> sortedMultiset) 

Source Link

Document

Returns an unmodifiable view of the specified sorted multiset.

Usage

From source file:ch.thn.datatree.core.GenericSetTreeNode.java

@Override
public SortedMultiset<N> getChildNodes() {
    return Multisets.unmodifiableSortedMultiset(internalGetChildren());
}