Table of Contents

Class Hashtable

Namespace
Java.Util
Assembly
MASES.JNet.dll
public class Hashtable : Dictionary, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
Inheritance
JVMBridgeBase
JVMBridgeBase<Dictionary>
Hashtable
Implements
IJVMBridgeCore
IJVMBridgeBaseStatic
IJVMBridgeBase
IJVMBridgeDefinition
Inherited Members
JVMBridgeBase<Dictionary>.IsAssignableFrom(IJavaType)
JVMBridgeBase<Dictionary>.IsAssignableFrom<T>()
JVMBridgeBase<Dictionary>.Execute<T>(params T[])
JVMBridgeBase<Dictionary>.DynBridgeClazz
JVMBridgeBase<Dictionary>.BridgeClazz
JVMBridgeBase.RuntimeClassNameOf<T>()
JVMBridgeBase.ClassNameOf<T>()
JVMBridgeBase.ClassOf<T>()
JVMBridgeBase.WrapsDirect<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn, TConverter>(IJavaObject)
JVMBridgeBase.MonitorEnter()
JVMBridgeBase.MonitorExit()
JVMBridgeBase.IsInstanceOf(IJavaType)
JVMBridgeBase.IsInstanceOf<T>()
JVMBridgeBase.RuntimeIsInstanceOf<T>()
JVMBridgeBase.CastTo<TNewClass>()
JVMBridgeBase.CastDirect<TNewClass>()
JVMBridgeBase.Dispose()
JVMBridgeBase.ToString()
JVMBridgeBase.GetHashCode()
JVMBridgeBase.Notify()
JVMBridgeBase.NotifyAll()
JVMBridgeBase.Wait()
JVMBridgeBase.DynBridgeInstance
JVMBridgeBase.BridgeInstance
JVMBridgeBase.IsBridgeListener
Extension Methods

Constructors

Hashtable()

Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge

public Hashtable()

Hashtable(Map)

public Hashtable(Map arg0)

Parameters

arg0 Map

Map

Hashtable(int)

public Hashtable(int arg0)

Parameters

arg0 int

int

Hashtable(int, float)

public Hashtable(int arg0, float arg1)

Parameters

arg0 int

int

arg1 float

float

Hashtable(params object[])

Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class

public Hashtable(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

public override string BridgeClassName { get; }

Property Value

string

IsBridgeAbstract

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

public override bool IsBridgeStatic { get; }

Property Value

bool

Methods

Clear()

public void Clear()

Compute(object, BiFunction)

public object Compute(object arg0, BiFunction arg1)

Parameters

arg0 object

object

arg1 BiFunction

BiFunction

Returns

object

object

ComputeIfAbsent(object, Function)

public object ComputeIfAbsent(object arg0, Function arg1)

Parameters

arg0 object

object

arg1 Function

Function

Returns

object

object

ComputeIfPresent(object, BiFunction)

public object ComputeIfPresent(object arg0, BiFunction arg1)

Parameters

arg0 object

object

arg1 BiFunction

BiFunction

Returns

object

object

Contains(object)

public bool Contains(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

ContainsKey(object)

public bool ContainsKey(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

ContainsValue(object)

public bool ContainsValue(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

EntrySetMethod()

public Set EntrySetMethod()

Returns

Set

Set

ForEach(BiConsumer)

public void ForEach(BiConsumer arg0)

Parameters

arg0 BiConsumer

BiConsumer

GetOrDefault(object, object)

public object GetOrDefault(object arg0, object arg1)

Parameters

arg0 object

object

arg1 object

object

Returns

object

object

KeySetMethod()

public Set KeySetMethod()

Returns

Set

Set

Merge(object, object, BiFunction)

public object Merge(object arg0, object arg1, BiFunction arg2)

Parameters

arg0 object

object

arg1 object

object

arg2 BiFunction

BiFunction

Returns

object

object

PutAll(Map)

public void PutAll(Map arg0)

Parameters

arg0 Map

Map

PutIfAbsent(object, object)

public object PutIfAbsent(object arg0, object arg1)

Parameters

arg0 object

object

arg1 object

object

Returns

object

object

Remove(object, object)

public bool Remove(object arg0, object arg1)

Parameters

arg0 object

object

arg1 object

object

Returns

bool

bool

Replace(object, object)

public object Replace(object arg0, object arg1)

Parameters

arg0 object

object

arg1 object

object

Returns

object

object

Replace(object, object, object)

public bool Replace(object arg0, object arg1, object arg2)

Parameters

arg0 object

object

arg1 object

object

arg2 object

object

Returns

bool

bool

ReplaceAll(BiFunction)

public void ReplaceAll(BiFunction arg0)

Parameters

arg0 BiFunction

BiFunction

Values()

public Collection Values()

Returns

Collection

Collection

Operators

implicit operator Serializable(Hashtable)

Converter from Hashtable to Serializable

public static implicit operator Serializable(Hashtable t)

Parameters

t Hashtable

Returns

Serializable

implicit operator Cloneable(Hashtable)

Converter from Hashtable to Cloneable

public static implicit operator Cloneable(Hashtable t)

Parameters

t Hashtable

Returns

Cloneable

implicit operator Map(Hashtable)

Converter from Hashtable to Map

public static implicit operator Map(Hashtable t)

Parameters

t Hashtable

Returns

Map