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