//------------------------------------------------------------------------------- // This package was automatically generated from EXPRESS (ISO STEP 10303 part11) // by a java generator build with the meta CASE tool Platypus // (alain.plantec@univ-brest.fr) // // Please, be aware that any hand-made updating of this file can be lost!!. //------------------------------------------------------------------------------- package CheddarBridge; public enum Debug_Level { No_Debug, Minimal, Verbose, Very_Verbose; public static Debug_Level fromString(String rep) throws Exception { if (rep.equals("No_Debug")) return (No_Debug); if (rep.equals("Minimal")) return (Minimal); if (rep.equals("Verbose")) return (Verbose); if (rep.equals("Very_Verbose")) return (Very_Verbose); throw new Exception("invalid Debug_Level enum string representation (" + rep + ")"); } }