Google OR-Tools v9.9
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
MinCostFlowBase.java
Go to the documentation of this file.
1/* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (https://www.swig.org).
3 * Version 4.2.0
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.graph;
10
11public class MinCostFlowBase {
12 private transient long swigCPtr;
13 protected transient boolean swigCMemOwn;
14
15 protected MinCostFlowBase(long cPtr, boolean cMemoryOwn) {
16 swigCMemOwn = cMemoryOwn;
17 swigCPtr = cPtr;
18 }
19
20 protected static long getCPtr(MinCostFlowBase obj) {
21 return (obj == null) ? 0 : obj.swigCPtr;
22 }
23
24 protected static long swigRelease(MinCostFlowBase 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;
45 mainJNI.delete_MinCostFlowBase(swigCPtr);
46 }
47 swigCPtr = 0;
48 }
49 }
50
51 public MinCostFlowBase() {
52 this(mainJNI.new_MinCostFlowBase(), true);
53 }
54
55 public enum Status {
63
64 public final int swigValue() {
65 return swigValue;
66 }
67
68 public static Status swigToEnum(int swigValue) {
69 Status[] swigValues = Status.class.getEnumConstants();
70 if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue)
71 return swigValues[swigValue];
72 for (Status swigEnum : swigValues)
73 if (swigEnum.swigValue == swigValue)
74 return swigEnum;
75 throw new IllegalArgumentException("No enum " + Status.class + " with value " + swigValue);
76 }
77
78 @SuppressWarnings("unused")
79 private Status() {
80 this.swigValue = SwigNext.next++;
81 }
82
83 @SuppressWarnings("unused")
84 private Status(int swigValue) {
85 this.swigValue = swigValue;
86 SwigNext.next = swigValue+1;
87 }
88
89 @SuppressWarnings("unused")
90 private Status(Status swigEnum) {
91 this.swigValue = swigEnum.swigValue;
92 SwigNext.next = this.swigValue+1;
93 }
94
95 private final int swigValue;
96
97 private static class SwigNext {
98 private static int next = 0;
99 }
100 }
101
102}
static long swigRelease(MinCostFlowBase obj)
MinCostFlowBase(long cPtr, boolean cMemoryOwn)
static long getCPtr(MinCostFlowBase obj)