Java Reference

Java Reference

RevPartialSequence.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
14public class RevPartialSequence {
15 private transient long swigCPtr;
16 protected transient boolean swigCMemOwn;
17
18 protected RevPartialSequence(long cPtr, boolean cMemoryOwn) {
19 swigCMemOwn = cMemoryOwn;
20 swigCPtr = cPtr;
21 }
22
23 protected static long getCPtr(RevPartialSequence obj) {
24 return (obj == null) ? 0 : obj.swigCPtr;
25 }
26
27 @SuppressWarnings("deprecation")
28 protected void finalize() {
29 delete();
30 }
31
32 public synchronized void delete() {
33 if (swigCPtr != 0) {
34 if (swigCMemOwn) {
35 swigCMemOwn = false;
36 mainJNI.delete_RevPartialSequence(swigCPtr);
37 }
38 swigCPtr = 0;
39 }
40 }
41
42 public RevPartialSequence(int[] items) {
43 this(mainJNI.new_RevPartialSequence__SWIG_0(items), true);
44 }
45
47 this(mainJNI.new_RevPartialSequence__SWIG_1(size), true);
48 }
49
50 public int numFirstRanked() {
51 return mainJNI.RevPartialSequence_numFirstRanked(swigCPtr, this);
52 }
53
54 public int numLastRanked() {
55 return mainJNI.RevPartialSequence_numLastRanked(swigCPtr, this);
56 }
57
58 public int size() {
59 return mainJNI.RevPartialSequence_size(swigCPtr, this);
60 }
61
62 public void rankFirst(Solver solver, int elt) {
63 mainJNI.RevPartialSequence_rankFirst(swigCPtr, this, Solver.getCPtr(solver), solver, elt);
64 }
65
66 public void rankLast(Solver solver, int elt) {
67 mainJNI.RevPartialSequence_rankLast(swigCPtr, this, Solver.getCPtr(solver), solver, elt);
68 }
69
70 public boolean isRanked(int elt) {
71 return mainJNI.RevPartialSequence_isRanked(swigCPtr, this, elt);
72 }
73
74 public String toString() {
75 return mainJNI.RevPartialSequence_toString(swigCPtr, this);
76 }
77
78}
Solver Class A solver represents the main computation engine.
Definition: Solver.java:76