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