CONOPT
Loading...
Searching...
No Matches
doubleArray.java
Go to the documentation of this file.
1/* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (https://www.swig.org).
3 * Version 4.3.1
4 *
5 * Do not make changes to this file unless you know what you are doing - modify
6 * the SWIG interface file instead.
7 * ----------------------------------------------------------------------------- */
8
9package jconopt;
10
11public class doubleArray {
12 private transient long swigCPtr;
13 protected transient boolean swigCMemOwn;
14
15 protected doubleArray(long cPtr, boolean cMemoryOwn) {
16 swigCMemOwn = cMemoryOwn;
17 swigCPtr = cPtr;
18 }
19
20 protected static long getCPtr(doubleArray obj) {
21 return (obj == null) ? 0 : obj.swigCPtr;
22 }
23
24 protected static long swigRelease(doubleArray obj) {
25 long ptr = 0;
26 if (obj != null) {
27 if (!obj.swigCMemOwn)
28 throw new RuntimeException("Cannot release ownership as memory is not owned");
29 ptr = obj.swigCPtr;
30 obj.swigCMemOwn = false;
31 obj.delete();
32 }
33 return ptr;
34 }
35
36 @SuppressWarnings({"deprecation", "removal"})
37 protected void finalize() {
38 delete();
39 }
40
41 public synchronized void delete() {
42 if (swigCPtr != 0) {
43 if (swigCMemOwn) {
44 swigCMemOwn = false;
46 }
47 swigCPtr = 0;
48 }
49 }
50
51 public doubleArray(long nelements) {
52 this(jconoptJNI.new_doubleArray(nelements), true);
53 }
54
55 public double getitem(long index) {
56 return jconoptJNI.doubleArray_getitem(swigCPtr, this, index);
57 }
58
59 public void setitem(long index, double value) {
60 jconoptJNI.doubleArray_setitem(swigCPtr, this, index, value);
61 }
62
64 long cPtr = jconoptJNI.doubleArray_cast(swigCPtr, this);
65 return (cPtr == 0) ? null : new SWIGTYPE_p_double(cPtr, false);
66 }
67
70 return (cPtr == 0) ? null : new doubleArray(cPtr, false);
71 }
72
73}
static long getCPtr(SWIGTYPE_p_double obj)
transient boolean swigCMemOwn
static long swigRelease(doubleArray obj)
SWIGTYPE_p_double cast()
void setitem(long index, double value)
doubleArray(long nelements)
double getitem(long index)
static long getCPtr(doubleArray obj)
synchronized void delete()
doubleArray(long cPtr, boolean cMemoryOwn)
static doubleArray frompointer(SWIGTYPE_p_double t)
static final native void delete_doubleArray(long jarg1)
static final native long doubleArray_cast(long jarg1, doubleArray jarg1_)
static final native long doubleArray_frompointer(long jarg1)
static final native void doubleArray_setitem(long jarg1, doubleArray jarg1_, long jarg2, double jarg3)
static final native double doubleArray_getitem(long jarg1, doubleArray jarg1_, long jarg2)
static final native long new_doubleArray(long jarg1)