double type in a proxy type that uses the JNI jdouble type to repesent the Java type. Conversion operators allow convenient usage while the get/set methods take an optional xmog_localenv argument for better performance (by saving at least a threadlocal memory access).
More...
#include <xmog_java_field.h>
Inheritance diagram for xmog_double:


Public Member Functions | |
| xmog_double (xmog_java_array *_ref, jint _index) | |
Creates an instance that acts as a proxy for an element of a double array. | |
| xmog_double (xmog_java_ref *_clazz_ref_array, xmog_java_dynamic *_dynamic, xmog_flags _flags=0) | |
Creates an instance that acts as a proxy for an indirect element of double type. | |
| operator jdouble () const | |
A conversion operator to the jdouble type. | |
| jdouble | operator * () const |
The dereference operator converts to the jdouble type. | |
| xmog_double & | operator= (jdouble) |
An assignment operator from the double type. | |
| xmog_double & | operator+= (jdouble) |
The additive assignment operator from the jdouble type. | |
| xmog_double & | operator-= (jdouble) |
The subtractive assignment operator from the jdouble type. | |
| xmog_double & | operator *= (jdouble) |
The multiplicative assignment operator from the jdouble type. | |
| xmog_double & | operator/= (jdouble) |
The divisive assignment operator from the jdouble type. | |
| jdouble | get (xmog_localenv *env=NULL, bool readThrough=false) const |
Returns the value of a double proxy instance. | |
| void | set (jdouble d, xmog_localenv *env=NULL, bool writeThrough=false) |
Sets the value of a double proxy. | |
double type in a proxy type that uses the JNI jdouble type to repesent the Java type. Conversion operators allow convenient usage while the get/set methods take an optional xmog_localenv argument for better performance (by saving at least a threadlocal memory access).
|
||||||||||||
|
Creates an instance that acts as a proxy for an element of a
|
|
||||||||||||||||
|
Creates an instance that acts as a proxy for an indirect element of
|
|
||||||||||||
|
Returns the value of a This method takes two optional arguments that can be used to improve overall performance or force a read from the Java side even if a cached value is available.
|
|
|
The dereference operator converts to the This operator is declared to support array iterators. |
|
|
The multiplicative assignment operator from the
This operator allows the use of proxy instances of this type in any place where the compiler expects a primitive |
|
|
A conversion operator to the
This operator allows the use of proxy instances of this type in any place where the compiler expects a primitive |
|
|
The additive assignment operator from the
This operator allows the use of proxy instances of this type in any place where the compiler expects a primitive |
|
|
The subtractive assignment operator from the
This operator allows the use of proxy instances of this type in any place where the compiler expects a primitive |
|
|
The divisive assignment operator from the
This operator allows the use of proxy instances of this type in any place where the compiler expects a primitive |
|
|
An assignment operator from the
This operator allows the use of proxy instances of this type in any place where the compiler expects a primitive |
|
||||||||||||||||
|
Sets the value of a
This method takes two optional arguments that can be used to improve overall performance or force a write to the Java side even if the
|
1.4.1