Java com.google.common.collect SortedArraySet fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.collect SortedArraySet fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.collect SortedArraySet.

The text is from its open source code.

Constructor

SortedArraySet(int initialCapacity)
Constructs a new empty sorted set, sorted according to the element's natural order, with the specified initial capacity.
SortedArraySet(Comparator comparator)
Creates a new empty sorted set, sorted according to the specified comparator, with the initial capacity of ten.
SortedArraySet(Collection collection)
Creates a new sorted set with the same elements as the specified collection.
SortedArraySet(SortedSet set)
Creates a new sorted set with the same elements and the same ordering as the specified sorted set.