doubango/bindings/java/android/twrap_proxy_plugin_type_t.java

55 lines
1.7 KiB
Java
Executable File

/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 2.0.9
*
* 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 twrap_proxy_plugin_type_t {
twrap_proxy_plugin_audio_producer,
twrap_proxy_plugin_video_producer,
twrap_proxy_plugin_audio_consumer,
twrap_proxy_plugin_video_consumer;
public final int swigValue() {
return swigValue;
}
public static twrap_proxy_plugin_type_t swigToEnum(int swigValue) {
twrap_proxy_plugin_type_t[] swigValues = twrap_proxy_plugin_type_t.class.getEnumConstants();
if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue)
return swigValues[swigValue];
for (twrap_proxy_plugin_type_t swigEnum : swigValues)
if (swigEnum.swigValue == swigValue)
return swigEnum;
throw new IllegalArgumentException("No enum " + twrap_proxy_plugin_type_t.class + " with value " + swigValue);
}
@SuppressWarnings("unused")
private twrap_proxy_plugin_type_t() {
this.swigValue = SwigNext.next++;
}
@SuppressWarnings("unused")
private twrap_proxy_plugin_type_t(int swigValue) {
this.swigValue = swigValue;
SwigNext.next = swigValue+1;
}
@SuppressWarnings("unused")
private twrap_proxy_plugin_type_t(twrap_proxy_plugin_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;
}
}