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

package org.doubango.tinyWRAP;

public enum tmcptt_event_type_t {
  tmcptt_event_type_none,
  tmcptt_event_type_token_granted,
  tmcptt_event_type_idle_channel,
  tmcptt_event_type_token_taken,
  tmcptt_event_type_request_sent,
  tmcptt_event_type_release_sent,
  tmcptt_event_type_token_denied,
  tmcptt_event_type_permission_revoked,
  tmcptt_event_type_queued,
  tmcptt_event_type_queued_timeout,
  tmcptt_event_type_queue_pos_request_sent;

  public final int swigValue() {
    return swigValue;
  }

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

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

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

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

  private final int swigValue;

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