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