|
| JavaPeerValue (string type) |
|
| JavaPeerValue (JNIHandle h) |
|
bool | GetBoolField (string name) |
|
void | SetBoolField (string name, bool value) |
|
byte | GetByteField (string name) |
|
void | SetByteField (string name, byte value) |
|
char | GetCharField (string name) |
|
void | SetCharField (string name, char value) |
|
double | GetDoubleField (string name) |
|
void | SetDoubleField (string name, double value) |
|
float | GetFloatField (string name) |
|
void | SetFloatField (string name, float value) |
|
int | GetIntField (string name) |
|
void | SetIntField (string name, int value) |
|
long | GetLongField (string name) |
|
void | SetLongField (string name, long value) |
|
short | GetShortField (string name) |
|
void | SetShortField (string name, short value) |
|
object | GetObjectField (string name) |
|
void | SetObjectField (string name, object value) |
|
string | GetStringField (string name) |
|
void | SetStringField (string name, string value) |
|
| JuggerNETProxyObject (string str) |
| Initializes a proxy object that corresponds with a Java java.lang.String instance of the specified value. More...
|
|
| JuggerNETProxyObject (JNIHandle jobject) |
| Initializes a proxy object that corresponds with a preexisting Java object represented by the given object handle. More...
|
|
void | Dispose () |
| Releases the reference to the corresponding Java object, thereby making it eligible for garbage collection if no other references to the same object are held. More...
|
|
void | Release () |
| Forgets the reference to the corresponding Java object. Unless caller explicitly cleans up Java reference, this will cause the runtime to leak a Java object reference. More...
|
|
override bool | Equals (object obj) |
| Implemented in terms of the Java equals() method. If the other object is not also a subclass of a JavaObject, the return value is always false. This is to ensure that the the results of a comparison is independent of the order, i.e. More...
|
|
override int | GetHashCode () |
| Implemented in terms of the Java hashCode() method. More...
|
|
override string | ToString () |
| Implemented in terms of the Java toString() method. More...
|
|
bool | IsInstanceOf (JavaClass clazz) |
| Returns true if the instance is type compatible with the given Java type. More...
|
|
bool | IsSame (JavaProxy proxy) |
| Returns true if the proxy instance wraps around the same Java object as the other proxy instance. More...
|
|
Summary description for JavaPeerValue.