OR-Tools  7.1
RevPartialSequence.java
Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2  * This file was automatically generated by SWIG (http://www.swig.org).
3  * Version 3.0.12
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 
9 package com.google.ortools.constraintsolver;
10 
11 public class RevPartialSequence {
12  private transient long swigCPtr;
13  protected transient boolean swigCMemOwn;
14 
15  protected RevPartialSequence(long cPtr, boolean cMemoryOwn) {
16  swigCMemOwn = cMemoryOwn;
17  swigCPtr = cPtr;
18  }
19 
20  protected static long getCPtr(RevPartialSequence obj) {
21  return (obj == null) ? 0 : obj.swigCPtr;
22  }
23 
24  protected void finalize() {
25  delete();
26  }
27 
28  public synchronized void delete() {
29  if (swigCPtr != 0) {
30  if (swigCMemOwn) {
31  swigCMemOwn = false;
32  mainJNI.delete_RevPartialSequence(swigCPtr);
33  }
34  swigCPtr = 0;
35  }
36  }
37 
38  public RevPartialSequence(int[] items) {
39  this(mainJNI.new_RevPartialSequence__SWIG_0(items), true);
40  }
41 
42  public RevPartialSequence(int size) {
43  this(mainJNI.new_RevPartialSequence__SWIG_1(size), true);
44  }
45 
46  public int numFirstRanked() {
47  return mainJNI.RevPartialSequence_numFirstRanked(swigCPtr, this);
48  }
49 
50  public int numLastRanked() {
51  return mainJNI.RevPartialSequence_numLastRanked(swigCPtr, this);
52  }
53 
54  public int size() {
55  return mainJNI.RevPartialSequence_size(swigCPtr, this);
56  }
57 
58  public void rankFirst(Solver solver, int elt) {
59  mainJNI.RevPartialSequence_rankFirst(swigCPtr, this, Solver.getCPtr(solver), solver, elt);
60  }
61 
62  public void rankLast(Solver solver, int elt) {
63  mainJNI.RevPartialSequence_rankLast(swigCPtr, this, Solver.getCPtr(solver), solver, elt);
64  }
65 
66  public boolean isRanked(int elt) {
67  return mainJNI.RevPartialSequence_isRanked(swigCPtr, this, elt);
68  }
69 
70  public String toString() {
71  return mainJNI.RevPartialSequence_toString(swigCPtr, this);
72  }
73 
74 }
static long getCPtr(Solver obj)
Definition: Solver.java:63