Table of Contents

Class Field

Namespace
Java.Lang.Reflect
Assembly
MASES.JNet.dll
public class Field : AccessibleObject, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, IAnnotatedElement
Inheritance
JVMBridgeBase
JVMBridgeBase<AnnotatedElement>
Field
Implements
IJVMBridgeCore
IJVMBridgeBaseStatic
IJVMBridgeBase
IJVMBridgeDefinition
Inherited Members
JVMBridgeBase<AnnotatedElement>.IsAssignableFrom(IJavaType)
JVMBridgeBase<AnnotatedElement>.IsAssignableFrom<T>()
JVMBridgeBase<AnnotatedElement>.Execute<T>(params T[])
JVMBridgeBase<AnnotatedElement>.DynBridgeClazz
JVMBridgeBase<AnnotatedElement>.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

Field()

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

public Field()

Field(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 Field(params object[] args)

Parameters

args object[]

Properties

AnnotatedType

public AnnotatedType AnnotatedType { get; }

Property Value

AnnotatedType

BridgeClassName

public override string BridgeClassName { get; }

Property Value

string

DeclaringClass

public Class DeclaringClass { get; }

Property Value

Class

GenericString

Returns a string describing this Field, including its generic type.

public string GenericString { get; }

Property Value

string

GenericType

public Type GenericType { get; }

Property Value

Type

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

Modifiers

public int Modifiers { get; }

Property Value

int

Name

public String Name { get; }

Property Value

String

Type

public Class Type { get; }

Property Value

Class

Methods

Get(object)

public object Get(object arg0)

Parameters

arg0 object

object

Returns

object

object

Exceptions

IllegalArgumentException
IllegalAccessException

GetBoolean(object)

public bool GetBoolean(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

Exceptions

IllegalArgumentException
IllegalAccessException

GetByte(object)

public byte GetByte(object arg0)

Parameters

arg0 object

object

Returns

byte

byte

Exceptions

IllegalArgumentException
IllegalAccessException

GetChar(object)

public char GetChar(object arg0)

Parameters

arg0 object

object

Returns

char

char

Exceptions

IllegalArgumentException
IllegalAccessException

GetDouble(object)

public double GetDouble(object arg0)

Parameters

arg0 object

object

Returns

double

double

Exceptions

IllegalArgumentException
IllegalAccessException

GetFloat(object)

public float GetFloat(object arg0)

Parameters

arg0 object

object

Returns

float

float

Exceptions

IllegalArgumentException
IllegalAccessException

GetInt(object)

public int GetInt(object arg0)

Parameters

arg0 object

object

Returns

int

int

Exceptions

IllegalArgumentException
IllegalAccessException

GetLong(object)

public long GetLong(object arg0)

Parameters

arg0 object

object

Returns

long

long

Exceptions

IllegalArgumentException
IllegalAccessException

GetShort(object)

public short GetShort(object arg0)

Parameters

arg0 object

object

Returns

short

short

Exceptions

IllegalArgumentException
IllegalAccessException

IsEnumConstant()

public bool IsEnumConstant()

Returns

bool

bool

IsSynthetic()

public bool IsSynthetic()

Returns

bool

bool

Set(object, object)

public void Set(object arg0, object arg1)

Parameters

arg0 object

object

arg1 object

object

Exceptions

IllegalArgumentException
IllegalAccessException

SetBoolean(object, bool)

public void SetBoolean(object arg0, bool arg1)

Parameters

arg0 object

object

arg1 bool

bool

Exceptions

IllegalArgumentException
IllegalAccessException

SetByte(object, byte)

public void SetByte(object arg0, byte arg1)

Parameters

arg0 object

object

arg1 byte

byte

Exceptions

IllegalArgumentException
IllegalAccessException

SetChar(object, char)

public void SetChar(object arg0, char arg1)

Parameters

arg0 object

object

arg1 char

char

Exceptions

IllegalArgumentException
IllegalAccessException

SetDouble(object, double)

public void SetDouble(object arg0, double arg1)

Parameters

arg0 object

object

arg1 double

double

Exceptions

IllegalArgumentException
IllegalAccessException

SetFloat(object, float)

public void SetFloat(object arg0, float arg1)

Parameters

arg0 object

object

arg1 float

float

Exceptions

IllegalArgumentException
IllegalAccessException

SetInt(object, int)

public void SetInt(object arg0, int arg1)

Parameters

arg0 object

object

arg1 int

int

Exceptions

IllegalArgumentException
IllegalAccessException

SetLong(object, long)

public void SetLong(object arg0, long arg1)

Parameters

arg0 object

object

arg1 long

long

Exceptions

IllegalArgumentException
IllegalAccessException

SetShort(object, short)

public void SetShort(object arg0, short arg1)

Parameters

arg0 object

object

arg1 short

short

Exceptions

IllegalArgumentException
IllegalAccessException

ToGenericString()

public String ToGenericString()

Returns

String

String

Operators

implicit operator Member(Field)

Converter from Field to Member

public static implicit operator Member(Field t)

Parameters

t Field

Returns

Member