Java Reference

Java Reference

OrToolsVersion.java
Go to the documentation of this file.
1/* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
3 * Version 4.0.2
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 com.google.ortools.init;
10
11public class OrToolsVersion {
12 private transient long swigCPtr;
13 protected transient boolean swigCMemOwn;
14
15 protected OrToolsVersion(long cPtr, boolean cMemoryOwn) {
16 swigCMemOwn = cMemoryOwn;
17 swigCPtr = cPtr;
18 }
19
20 protected static long getCPtr(OrToolsVersion obj) {
21 return (obj == null) ? 0 : obj.swigCPtr;
22 }
23
24 @SuppressWarnings("deprecation")
25 protected void finalize() {
26 delete();
27 }
28
29 public synchronized void delete() {
30 if (swigCPtr != 0) {
31 if (swigCMemOwn) {
32 swigCMemOwn = false;
33 mainJNI.delete_OrToolsVersion(swigCPtr);
34 }
35 swigCPtr = 0;
36 }
37 }
38
42 public static int getMajorNumber() {
43 return mainJNI.OrToolsVersion_getMajorNumber();
44 }
45
49 public static int getMinorNumber() {
50 return mainJNI.OrToolsVersion_getMinorNumber();
51 }
52
56 public static int getPatchNumber() {
57 return mainJNI.OrToolsVersion_getPatchNumber();
58 }
59
63 public static String getVersionString() {
64 return mainJNI.OrToolsVersion_getVersionString();
65 }
66
67 public OrToolsVersion() {
68 this(mainJNI.new_OrToolsVersion(), true);
69 }
70
71}
static String getVersionString()
Returns the string version of OR-Tools.
static int getMajorNumber()
Returns the major version of OR-Tools.
static int getPatchNumber()
Returns the patch version of OR-Tools.
static int getMinorNumber()
Returns the minor version of OR-Tools.
OrToolsVersion(long cPtr, boolean cMemoryOwn)