All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.ortools.constraintsolver.IntVarIterator Maven / Gradle / Ivy

The newest version!
/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (http://www.swig.org).
 * Version 3.0.12
 *
 * Do not make changes to this file unless you know what you are doing--modify
 * the SWIG interface file instead.
 * ----------------------------------------------------------------------------- */

package com.google.ortools.constraintsolver;

public class IntVarIterator extends BaseObject {
  private transient long swigCPtr;

  protected IntVarIterator(long cPtr, boolean cMemoryOwn) {
    super(mainJNI.IntVarIterator_SWIGUpcast(cPtr), cMemoryOwn);
    swigCPtr = cPtr;
  }

  protected static long getCPtr(IntVarIterator obj) {
    return (obj == null) ? 0 : obj.swigCPtr;
  }

  protected void finalize() {
    delete();
  }

  public synchronized void delete() {
    if (swigCPtr != 0) {
      if (swigCMemOwn) {
        swigCMemOwn = false;
        mainJNI.delete_IntVarIterator(swigCPtr);
      }
      swigCPtr = 0;
    }
    super.delete();
  }

  public void init() {
    mainJNI.IntVarIterator_init(swigCPtr, this);
  }

  public boolean ok() {
    return mainJNI.IntVarIterator_ok(swigCPtr, this);
  }

  public long value() {
    return mainJNI.IntVarIterator_value(swigCPtr, this);
  }

  public void next() {
    mainJNI.IntVarIterator_next(swigCPtr, this);
  }

  public String toString() {
    return mainJNI.IntVarIterator_toString(swigCPtr, this);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy