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