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