Table of Contents

Interface ISet<E>

Namespace
Java.Util
Assembly
MASES.JNet.dll

.NET interface for TO BE DEFINED FROM USER

public interface ISet<E> : ICollection<E>

Type Parameters

E
Inherited Members

Methods

Add(E)

bool Add(E arg0)

Parameters

arg0 E

E

Returns

bool

bool

AddAll<Arg0ExtendsE>(Collection<Arg0ExtendsE>)

bool AddAll<Arg0ExtendsE>(Collection<Arg0ExtendsE> arg0) where Arg0ExtendsE : E

Parameters

arg0 Collection<Arg0ExtendsE>

Collection

Returns

bool

bool

Type Parameters

Arg0ExtendsE

E

Clear()

void Clear()

Contains(object)

bool Contains(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

ContainsAll(Collection<object>)

bool ContainsAll(Collection<object> arg0)

Parameters

arg0 Collection<object>

Collection

Returns

bool

bool

IsEmpty()

bool IsEmpty()

Returns

bool

bool

Iterator()

Iterator<E> Iterator()

Returns

Iterator<E>

Iterator

Remove(object)

bool Remove(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

RemoveAll(Collection<object>)

bool RemoveAll(Collection<object> arg0)

Parameters

arg0 Collection<object>

Collection

Returns

bool

bool

RetainAll(Collection<object>)

bool RetainAll(Collection<object> arg0)

Parameters

arg0 Collection<object>

Collection

Returns

bool

bool

Size()

int Size()

Returns

int

int

Spliterator()

Spliterator<E> Spliterator()

Returns

Spliterator<E>

Spliterator

ToArray()

object[] ToArray()

Returns

object[]

object

ToArray<T>(T[])

T[] ToArray<T>(T[] arg0)

Parameters

arg0 T[]

T

Returns

T[]

T

Type Parameters

T