Example usage for org.apache.commons.collections.bag TreeBag TreeBag

List of usage examples for org.apache.commons.collections.bag TreeBag TreeBag

Introduction

In this page you can find the example usage for org.apache.commons.collections.bag TreeBag TreeBag.

Prototype

public TreeBag(Collection coll) 

Source Link

Document

Constructs a TreeBag containing all the members of the specified collection.

Usage

From source file:CookieBagV2.java

private void prepareSortedCookieBag() {
    sortedCookieBag = new TreeBag(Arrays.asList(cookieJar));
}