/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.12 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package org.jcae.opencascade.jni; public enum ChFi3d_FilletShape { Rational, QuasiAngular, Polynomial; public final int swigValue() { return swigValue; } public static ChFi3d_FilletShape swigToEnum(int swigValue) { ChFi3d_FilletShape[] swigValues = ChFi3d_FilletShape.class.getEnumConstants(); if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue) return swigValues[swigValue]; for (ChFi3d_FilletShape swigEnum : swigValues) if (swigEnum.swigValue == swigValue) return swigEnum; throw new IllegalArgumentException("No enum " + ChFi3d_FilletShape.class + " with value " + swigValue); } @SuppressWarnings("unused") private ChFi3d_FilletShape() { this.swigValue = SwigNext.next++; } @SuppressWarnings("unused") private ChFi3d_FilletShape(int swigValue) { this.swigValue = swigValue; SwigNext.next = swigValue+1; } @SuppressWarnings("unused") private ChFi3d_FilletShape(ChFi3d_FilletShape swigEnum) { this.swigValue = swigEnum.swigValue; SwigNext.next = this.swigValue+1; } private final int swigValue; private static class SwigNext { private static int next = 0; } }