Java Reference

Java Reference

IntBoolPair.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.constraintsolver;
10
11public class IntBoolPair {
12 private transient long swigCPtr;
13 protected transient boolean swigCMemOwn;
14
15 protected IntBoolPair(long cPtr, boolean cMemoryOwn) {
16 swigCMemOwn = cMemoryOwn;
17 swigCPtr = cPtr;
18 }
19
20 protected static long getCPtr(IntBoolPair 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_IntBoolPair(swigCPtr);
34 }
35 swigCPtr = 0;
36 }
37 }
38
39 public IntBoolPair() {
40 this(mainJNI.new_IntBoolPair__SWIG_0(), true);
41 }
42
43 public IntBoolPair(int first, boolean second) {
44 this(mainJNI.new_IntBoolPair__SWIG_1(first, second), true);
45 }
46
47 public IntBoolPair(IntBoolPair other) {
48 this(mainJNI.new_IntBoolPair__SWIG_2(IntBoolPair.getCPtr(other), other), true);
49 }
50
51 public void setFirst(int value) {
52 mainJNI.IntBoolPair_first_set(swigCPtr, this, value);
53 }
54
55 public int getFirst() {
56 return mainJNI.IntBoolPair_first_get(swigCPtr, this);
57 }
58
59 public void setSecond(boolean value) {
60 mainJNI.IntBoolPair_second_set(swigCPtr, this, value);
61 }
62
63 public boolean getSecond() {
64 return mainJNI.IntBoolPair_second_get(swigCPtr, this);
65 }
66
67}
IntBoolPair(long cPtr, boolean cMemoryOwn)