// Copyright (C) Stichting Deltares 2018. 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. namespace Riskeer.Integration.IO.Assembly { /// /// Enum defining the exportable assembly methods. /// public enum ExportableAssemblyMethod { /// /// Represents the assembly method WBI-0E-1. /// WBI0E1 = 1, /// /// Represents the assembly method WBI-0E-3. /// WBI0E3 = 2, /// /// Represents the assembly method WBI-0G-1. /// WBI0G1 = 3, /// /// Represents the assembly method WBI-0G-3. /// WBI0G3 = 4, /// /// Represents the assembly method WBI-0G-4. /// WBI0G4 = 5, /// /// Represents the assembly method WBI-0G-5. /// WBI0G5 = 6, /// /// Represents the assembly method WBI-0G-6. /// WBI0G6 = 7, /// /// Represents the assembly method WBI-0T-1. /// WBI0T1 = 8, /// /// Represents the assembly method WBI-0T-3. /// WBI0T3 = 9, /// /// Represents the assembly method WBI-0T-4. /// WBI0T4 = 10, /// /// Represents the assembly method WBI-0T-5. /// WBI0T5 = 11, /// /// Represents the assembly method WBI-0T-6. /// WBI0T6 = 12, /// /// Represents the assembly method WBI-0T-7. /// WBI0T7 = 13, /// /// Represents the assembly method WBI-0A-1. /// WBI0A1 = 14, /// /// Represents the assembly method WBI-1A-1. /// WBI1A1 = 15, /// /// Represents the assembly method WBI-1B-1. /// WBI1B1 = 16, /// /// Represents the assembly method WBI-2A-1. /// WBI2A1 = 17, /// /// Represents the assembly method WBI-2B-1. /// WBI2B1 = 18, /// /// Represents the assembly method WBI-2C-1. /// WBI2C1 = 19, /// /// Represents the assembly method WBI-3A-1. /// WBI3A1 = 20, /// /// Represents the assembly method WBI-3B-1. /// WBI3B1 = 21, /// /// Represents the assembly method WBI-3C-1. /// WBI3C1 = 22 } }