/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.2 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.frostwire.jlibtorrent.swig; public enum bdecode_errors { no_error(0), expected_string, expected_colon, unexpected_eof, expected_value, depth_exceeded, limit_exceeded, overflow, error_code_max; public final int swigValue() { return swigValue; } public static bdecode_errors swigToEnum(int swigValue) { bdecode_errors[] swigValues = bdecode_errors.class.getEnumConstants(); if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue) return swigValues[swigValue]; for (bdecode_errors swigEnum : swigValues) if (swigEnum.swigValue == swigValue) return swigEnum; throw new IllegalArgumentException("No enum " + bdecode_errors.class + " with value " + swigValue); } @SuppressWarnings("unused") private bdecode_errors() { this.swigValue = SwigNext.next++; } @SuppressWarnings("unused") private bdecode_errors(int swigValue) { this.swigValue = swigValue; SwigNext.next = swigValue+1; } @SuppressWarnings("unused") private bdecode_errors(bdecode_errors swigEnum) { this.swigValue = swigEnum.swigValue; SwigNext.next = this.swigValue+1; } private final int swigValue; private static class SwigNext { private static int next = 0; } }