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