IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
java.util.TreeSetWrapper< T > Class Template Reference
Inheritance diagram for java.util.TreeSetWrapper< T >:
java.util.SetWrapper< T > java.util.CollectionWrapper< T > java.lang.IterableWrapper< T >

Public Member Functions

 TreeSetWrapper (TreeSet set)
 Initializes a new instance.
 
- Public Member Functions inherited from java.util.SetWrapper< T >
 SetWrapper (Set set)
 Initializes a new instance.
 
void ExceptWith (IEnumerable< T > other)
 
void IntersectWith (IEnumerable< T > other)
 
bool IsProperSubsetOf (IEnumerable< T > other)
 
bool IsProperSupersetOf (IEnumerable< T > other)
 
bool IsSubsetOf (IEnumerable< T > other)
 
bool IsSupersetOf (IEnumerable< T > other)
 
bool Overlaps (IEnumerable< T > other)
 
bool SetEquals (IEnumerable< T > other)
 
void SymmetricExceptWith (IEnumerable< T > other)
 
void UnionWith (IEnumerable< T > other)
 
- Public Member Functions inherited from java.util.CollectionWrapper< T >
 CollectionWrapper (Collection collection)
 Initializes a new instance.
 
void Add (T item)
 
void Clear ()
 
bool Contains (T item)
 
void CopyTo (T[] array, int arrayIndex)
 
bool Remove (T item)
 
- Public Member Functions inherited from java.lang.IterableWrapper< T >
 IterableWrapper (Iterable iterable)
 Initializes a new instance.
 
IEnumerator< T > GetEnumerator ()
 Returns an enumerator that wraps the given iterable.
 

Additional Inherited Members

- Package Attributes inherited from java.util.CollectionWrapper< T >
- Properties inherited from java.util.CollectionWrapper< T >
int Count [get]
 
bool IsReadOnly [get]
 

Detailed Description

Definition at line 7 of file TreeSetWrapper.cs.

Constructor & Destructor Documentation

◆ TreeSetWrapper()

Initializes a new instance.

Parameters
set
Exceptions
ArgumentNullException

Definition at line 17 of file TreeSetWrapper.cs.

17 :
18 base(set)
19 {
20 _set = set ?? throw new ArgumentNullException(nameof(set));
21 }

The documentation for this class was generated from the following file: