/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.8 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.sequencelogic; public final class EYE_LOG_LEVEL { public final static EYE_LOG_LEVEL IONU_FATAL = new EYE_LOG_LEVEL("IONU_FATAL", eyeinterfaceJNI.IONU_FATAL_get()); public final static EYE_LOG_LEVEL IONU_ERROR = new EYE_LOG_LEVEL("IONU_ERROR", eyeinterfaceJNI.IONU_ERROR_get()); public final static EYE_LOG_LEVEL IONU_WARN = new EYE_LOG_LEVEL("IONU_WARN", eyeinterfaceJNI.IONU_WARN_get()); public final static EYE_LOG_LEVEL IONU_INFO = new EYE_LOG_LEVEL("IONU_INFO", eyeinterfaceJNI.IONU_INFO_get()); public final static EYE_LOG_LEVEL IONU_DEBUG = new EYE_LOG_LEVEL("IONU_DEBUG", eyeinterfaceJNI.IONU_DEBUG_get()); public final static EYE_LOG_LEVEL IONU_VERBOSE = new EYE_LOG_LEVEL("IONU_VERBOSE", eyeinterfaceJNI.IONU_VERBOSE_get()); public final int swigValue() { return swigValue; } public String toString() { return swigName; } public static EYE_LOG_LEVEL swigToEnum(int swigValue) { if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue) return swigValues[swigValue]; for (int i = 0; i < swigValues.length; i++) if (swigValues[i].swigValue == swigValue) return swigValues[i]; throw new IllegalArgumentException("No enum " + EYE_LOG_LEVEL.class + " with value " + swigValue); } private EYE_LOG_LEVEL(String swigName) { this.swigName = swigName; this.swigValue = swigNext++; } private EYE_LOG_LEVEL(String swigName, int swigValue) { this.swigName = swigName; this.swigValue = swigValue; swigNext = swigValue+1; } private EYE_LOG_LEVEL(String swigName, EYE_LOG_LEVEL swigEnum) { this.swigName = swigName; this.swigValue = swigEnum.swigValue; swigNext = this.swigValue+1; } private static EYE_LOG_LEVEL[] swigValues = { IONU_FATAL, IONU_ERROR, IONU_WARN, IONU_INFO, IONU_DEBUG, IONU_VERBOSE }; private static int swigNext = 0; private final int swigValue; private final String swigName; }