// 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. namespace Ringtoets.AssemblyTool.IO.Model.Enums { /// /// Class containing definitions for XML enum identifiers for /// the serializable assembly model. /// public static class AssemblyXmlEnumIdentifiers { #region SerializableFailureMechanismCategoryGroup /// /// Identifier for /// public const string SerializableFailureMechanismCategoryGroupNotApplicable = "NVT"; /// /// Identifier for /// public const string SerializableFailureMechanismCategoryGroupIt = "I-traject"; /// /// Identifier for /// public const string SerializableFailureMechanismCategoryGroupIIt = "II-traject"; /// /// Identifier for /// public const string SerializableFailureMechanismCategoryGroupIIIt = "III-traject"; /// /// Identifier for /// public const string SerializableFailureMechanismCategoryGroupIVt = "IV-traject"; /// /// Identifier for /// public const string SerializableFailureMechanismCategoryGroupVt = "V-traject"; /// /// Identifier for /// public const string SerializableFailureMechanismCategoryGroupVIt = "VI-traject"; /// /// Identifier for /// public const string SerializableFailureMechanismCategoryGroupVIIt = "VII-traject"; #endregion #region AssemblyMethod /// /// Identifier for /// public const string AssemblyMethodWBI0E1 = "WBI-0E-1"; /// /// Identifier for /// public const string AssemblyMethodWBI0E3 = "WBI-0E-3"; /// /// Identifier for /// public const string AssemblyMethodWBI0G1 = "WBI-0G-1"; /// /// Identifier for /// public const string AssemblyMethodWBI0G3 = "WBI-0G-3"; /// /// Identifier for /// public const string AssemblyMethodWBI0G4 = "WBI-0G-4"; /// /// Identifier for /// public const string AssemblyMethodWBI0G5 = "WBI-0G-5"; /// /// Identifier for /// public const string AssemblyMethodWBI0G6 = "WBI-0G-6"; /// /// Identifier for /// public const string AssemblyMethodWBI0T1 = "WBI-0T-1"; /// /// Identifier for /// public const string AssemblyMethodWBI0T3 = "WBI-0T-3"; /// /// Identifier for /// public const string AssemblyMethodWBI0T4 = "WBI-0T-4"; /// /// Identifier for /// public const string AssemblyMethodWBI0T5 = "WBI-0T-5"; /// /// Identifier for /// public const string AssemblyMethodWBI0T6 = "WBI-0T-6"; /// /// Identifier for /// public const string AssemblyMethodWBI0T7 = "WBI-0T-7"; /// /// Identifier for /// public const string AssemblyMethodWBI0A1 = "WBI-0A-1"; /// /// Identifier for /// public const string AssemblyMethodWBI1A1 = "WBI-1A-1"; /// /// Identifier for /// public const string AssemblyMethodWBI1B1 = "WBI-1B-1"; /// /// Identifier for /// public const string AssemblyMethodWBI2A1 = "WBI-2A-1"; /// /// Identifier for /// public const string AssemblyMethodWBI2B1 = "WBI-2B-1"; /// /// Identifier for /// public const string AssemblyMethodWBI2C1 = "WBI-2C-1"; /// /// Identifier for /// public const string AssemblyMethodWBI3A1 = "WBI-3A-1"; /// /// Identifier for /// public const string AssemblyMethodWBI3B1 = "WBI-3B-1"; /// /// Identifier for /// public const string AssemblyMethodWBI3C1 = "WBI-3C-1"; #endregion } }