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