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

org.robovm.llvm.binding.ThreadLocalMode Maven / Gradle / Ivy

There is a newer version: 1.12.0
Show newest version
/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (http://www.swig.org).
 * Version 2.0.4
 *
 * Do not make changes to this file unless you know what you are doing--modify
 * the SWIG interface file instead.
 * ----------------------------------------------------------------------------- */

package org.robovm.llvm.binding;

public enum ThreadLocalMode {
  NotThreadLocal(0),
  GeneralDynamicTLSModel,
  LocalDynamicTLSModel,
  InitialExecTLSModel,
  LocalExecTLSModel;

  public final int swigValue() {
    return swigValue;
  }

  public static ThreadLocalMode swigToEnum(int swigValue) {
    ThreadLocalMode[] swigValues = ThreadLocalMode.class.getEnumConstants();
    if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue)
      return swigValues[swigValue];
    for (ThreadLocalMode swigEnum : swigValues)
      if (swigEnum.swigValue == swigValue)
        return swigEnum;
    throw new IllegalArgumentException("No enum " + ThreadLocalMode.class + " with value " + swigValue);
  }

  @SuppressWarnings("unused")
  private ThreadLocalMode() {
    this.swigValue = SwigNext.next++;
  }

  @SuppressWarnings("unused")
  private ThreadLocalMode(int swigValue) {
    this.swigValue = swigValue;
    SwigNext.next = swigValue+1;
  }

  @SuppressWarnings("unused")
  private ThreadLocalMode(ThreadLocalMode swigEnum) {
    this.swigValue = swigEnum.swigValue;
    SwigNext.next = this.swigValue+1;
  }

  private final int swigValue;

  private static class SwigNext {
    private static int next = 0;
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy