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