Table of Contents

Interface ICollection<E>

Namespace
Java.Util
Assembly
MASES.JNet.dll

.NET interface for TO BE DEFINED FROM USER

public interface ICollection<E>

Type Parameters

E

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

ParallelStream()

Stream<E> ParallelStream()

Returns

Stream<E>

Stream

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

RemoveIf<Arg0objectSuperE>(Predicate<Arg0objectSuperE>)

bool RemoveIf<Arg0objectSuperE>(Predicate<Arg0objectSuperE> arg0) where Arg0objectSuperE : E

Parameters

arg0 Predicate<Arg0objectSuperE>

Predicate

Returns

bool

bool

Type Parameters

Arg0objectSuperE

E

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

Stream()

Stream<E> Stream()

Returns

Stream<E>

Stream

ToArray()

object[] ToArray()

Returns

object[]

object

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

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

Parameters

arg0 IntFunction<T[]>

IntFunction

Returns

T[]

T

Type Parameters

T

ToArray<T>(T[])

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

Parameters

arg0 T[]

T

Returns

T[]

T

Type Parameters

T