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