Table of Contents

Interface IMap<K, V>

Namespace
Java.Util
Assembly
MASES.JNet.dll

.NET interface for TO BE DEFINED FROM USER

public interface IMap<K, V>

Type Parameters

K
V

Methods

Clear()

void Clear()

ComputeIfAbsent<Arg1objectSuperK, Arg1ExtendsV>(K, Function<Arg1objectSuperK, Arg1ExtendsV>)

V ComputeIfAbsent<Arg1objectSuperK, Arg1ExtendsV>(K arg0, Function<Arg1objectSuperK, Arg1ExtendsV> arg1) where Arg1objectSuperK : K where Arg1ExtendsV : V

Parameters

arg0 K

K

arg1 Function<Arg1objectSuperK, Arg1ExtendsV>

Function

Returns

V

V

Type Parameters

Arg1objectSuperK

K

Arg1ExtendsV

V

ComputeIfPresent<Arg1objectSuperK, Arg1objectSuperV, Arg1ExtendsV>(K, BiFunction<Arg1objectSuperK, Arg1objectSuperV, Arg1ExtendsV>)

V ComputeIfPresent<Arg1objectSuperK, Arg1objectSuperV, Arg1ExtendsV>(K arg0, BiFunction<Arg1objectSuperK, Arg1objectSuperV, Arg1ExtendsV> arg1) where Arg1objectSuperK : K where Arg1objectSuperV : V where Arg1ExtendsV : V

Parameters

arg0 K

K

arg1 BiFunction<Arg1objectSuperK, Arg1objectSuperV, Arg1ExtendsV>

BiFunction

Returns

V

V

Type Parameters

Arg1objectSuperK

K

Arg1objectSuperV

V

Arg1ExtendsV

V

Compute<Arg1objectSuperK, Arg1objectSuperV, Arg1ExtendsV>(K, BiFunction<Arg1objectSuperK, Arg1objectSuperV, Arg1ExtendsV>)

V Compute<Arg1objectSuperK, Arg1objectSuperV, Arg1ExtendsV>(K arg0, BiFunction<Arg1objectSuperK, Arg1objectSuperV, Arg1ExtendsV> arg1) where Arg1objectSuperK : K where Arg1objectSuperV : V where Arg1ExtendsV : V

Parameters

arg0 K

K

arg1 BiFunction<Arg1objectSuperK, Arg1objectSuperV, Arg1ExtendsV>

BiFunction

Returns

V

V

Type Parameters

Arg1objectSuperK

K

Arg1objectSuperV

V

Arg1ExtendsV

V

ContainsKey(object)

bool ContainsKey(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

ContainsValue(object)

bool ContainsValue(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

EntrySet()

Set<Map.Entry<K, V>> EntrySet()

Returns

Set<Map.Entry<K, V>>

Set

ForEach<Arg0objectSuperK, Arg0objectSuperV>(BiConsumer<Arg0objectSuperK, Arg0objectSuperV>)

void ForEach<Arg0objectSuperK, Arg0objectSuperV>(BiConsumer<Arg0objectSuperK, Arg0objectSuperV> arg0) where Arg0objectSuperK : K where Arg0objectSuperV : V

Parameters

arg0 BiConsumer<Arg0objectSuperK, Arg0objectSuperV>

BiConsumer

Type Parameters

Arg0objectSuperK

K

Arg0objectSuperV

V

Get(object)

V Get(object arg0)

Parameters

arg0 object

object

Returns

V

V

GetOrDefault(object, V)

V GetOrDefault(object arg0, V arg1)

Parameters

arg0 object

object

arg1 V

V

Returns

V

V

IsEmpty()

bool IsEmpty()

Returns

bool

bool

KeySet()

Set<K> KeySet()

Returns

Set<K>

Set

Merge<Arg2objectSuperV, Arg2ExtendsV>(K, V, BiFunction<Arg2objectSuperV, Arg2objectSuperV, Arg2ExtendsV>)

V Merge<Arg2objectSuperV, Arg2ExtendsV>(K arg0, V arg1, BiFunction<Arg2objectSuperV, Arg2objectSuperV, Arg2ExtendsV> arg2) where Arg2objectSuperV : V where Arg2ExtendsV : V

Parameters

arg0 K

K

arg1 V

V

arg2 BiFunction<Arg2objectSuperV, Arg2objectSuperV, Arg2ExtendsV>

BiFunction

Returns

V

V

Type Parameters

Arg2objectSuperV

V

Arg2ExtendsV

V

Put(K, V)

V Put(K arg0, V arg1)

Parameters

arg0 K

K

arg1 V

V

Returns

V

V

PutAll<Arg0ExtendsK, Arg0ExtendsV>(Map<Arg0ExtendsK, Arg0ExtendsV>)

void PutAll<Arg0ExtendsK, Arg0ExtendsV>(Map<Arg0ExtendsK, Arg0ExtendsV> arg0) where Arg0ExtendsK : K where Arg0ExtendsV : V

Parameters

arg0 Map<Arg0ExtendsK, Arg0ExtendsV>

Map

Type Parameters

Arg0ExtendsK

K

Arg0ExtendsV

V

PutIfAbsent(K, V)

V PutIfAbsent(K arg0, V arg1)

Parameters

arg0 K

K

arg1 V

V

Returns

V

V

Remove(object)

V Remove(object arg0)

Parameters

arg0 object

object

Returns

V

V

Remove(object, object)

bool Remove(object arg0, object arg1)

Parameters

arg0 object

object

arg1 object

object

Returns

bool

bool

Replace(K, V)

V Replace(K arg0, V arg1)

Parameters

arg0 K

K

arg1 V

V

Returns

V

V

Replace(K, V, V)

bool Replace(K arg0, V arg1, V arg2)

Parameters

arg0 K

K

arg1 V

V

arg2 V

V

Returns

bool

bool

ReplaceAll<Arg0objectSuperK, Arg0objectSuperV, Arg0ExtendsV>(BiFunction<Arg0objectSuperK, Arg0objectSuperV, Arg0ExtendsV>)

void ReplaceAll<Arg0objectSuperK, Arg0objectSuperV, Arg0ExtendsV>(BiFunction<Arg0objectSuperK, Arg0objectSuperV, Arg0ExtendsV> arg0) where Arg0objectSuperK : K where Arg0objectSuperV : V where Arg0ExtendsV : V

Parameters

arg0 BiFunction<Arg0objectSuperK, Arg0objectSuperV, Arg0ExtendsV>

BiFunction

Type Parameters

Arg0objectSuperK

K

Arg0objectSuperV

V

Arg0ExtendsV

V

Size()

int Size()

Returns

int

int

Values()

Collection<V> Values()

Returns

Collection<V>

Collection