// Copyright (C) Stichting Deltares 2017. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using System.Xml.Serialization; namespace Ringtoets.AssemblyTool.IO.Model.Enums { /// /// Enum defining the various types of assembly methods. /// public enum AssemblyMethod { /// /// Represents the assembly method WBI-0E-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0E1)] WBI0E1 = 1, /// /// Represents the assembly method WBI-0E-3. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0E3)] WBI0E3 = 2, /// /// Represents the assembly method WBI-0G-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0G1)] WBI0G1 = 3, /// /// Represents the assembly method WBI-0G-3. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0G3)] WBI0G3 = 4, /// /// Represents the assembly method WBI-0G-4. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0G4)] WBI0G4 = 5, /// /// Represents the assembly method WBI-0G-5. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0G5)] WBI0G5 = 6, /// /// Represents the assembly method WBI-0G-6. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0G6)] WBI0G6 = 7, /// /// Represents the assembly method WBI-0T-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0T1)] WBI0T1 = 8, /// /// Represents the assembly method WBI-0T-3. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0T3)] WBI0T3 = 9, /// /// Represents the assembly method WBI-0T-4. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0T4)] WBI0T4 = 10, /// /// Represents the assembly method WBI-0T-5. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0T5)] WBI0T5 = 11, /// /// Represents the assembly method WBI-0T-6. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0T6)] WBI0T6 = 12, /// /// Represents the assembly method WBI-0T-7. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0T7)] WBI0T7 = 13, /// /// Represents the assembly method WBI-0A-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI0A1)] WBI0A1 = 14, /// /// Represents the assembly method WBI-1A-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI1A1)] WBI1A1 = 15, /// /// Represents the assembly method WBI-1B-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI1B1)] WBI1B1 = 16, /// /// Represents the assembly method WBI-2A-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI2A1)] WBI2A1 = 17, /// /// Represents the assembly method WBI-2B-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI2B1)] WBI2B1 = 18, /// /// Represents the assembly method WBI-2C-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI2C1)] WBI2C1 = 19, /// /// Represents the assembly method WBI-3A-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI3A1)] WBI3A1 = 20, /// /// Represents the assembly method WBI-3B-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI3B1)] WBI3B1 = 21, /// /// Represents the assembly method WBI-3C-1. /// [XmlEnum(AssemblyXmlEnumIdentifiers.AssemblyMethodWBI3C1)] WBI3C1 = 22 } }