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