//------------------------------------------------------------------------------- // 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 migrations_type { No_Migration_Type, Job_Level_Migration_Type, Time_Unit_Migration_Type; public static migrations_type fromString(String rep) throws Exception { if (rep.equals("No_Migration_Type")) return (No_Migration_Type); if (rep.equals("Job_Level_Migration_Type")) return (Job_Level_Migration_Type); if (rep.equals("Time_Unit_Migration_Type")) return (Time_Unit_Migration_Type); throw new Exception("invalid migrations_type enum string representation (" + rep + ")"); } }