summaryrefslogtreecommitdiffstats
path: root/bindings/java/android/tsip_invite_event_type_t.java
blob: 64f036db6cc654dfa11ad4636a7b25f777361067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (http://www.swig.org).
 * Version 1.3.39
 *
 * 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 tsip_invite_event_type_t {
  tsip_i_newcall,
  tsip_i_request,
  tsip_ao_request,
  tsip_o_ect_ok,
  tsip_o_ect_nok,
  tsip_i_ect,
  tsip_m_early_media,
  tsip_m_local_hold_ok,
  tsip_m_local_hold_nok,
  tsip_m_local_resume_ok,
  tsip_m_local_resume_nok,
  tsip_m_remote_hold,
  tsip_m_remote_resume;

  public final int swigValue() {
    return swigValue;
  }

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

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

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

  @SuppressWarnings("unused")
  private tsip_invite_event_type_t(tsip_invite_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;
  }
}

OpenPOWER on IntegriCloud