// Copyright (C) Stichting Deltares 2016. 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.Piping.IO.Schema
{
///
/// Container of identifiers related to the piping configuration schema definition.
///
public static class PipingConfigurationSchemaIdentifiers
{
///
/// Gets the identifier for root elements.
///
public static string RootElement => "root";
///
/// Gets the identifier for calculation elements.
///
public static string CalculationElement => "berekening";
///
/// Gets the identifier for folder elements.
///
public static string FolderElement => "map";
///
/// Gets the identifier for name attributes.
///
public static string NameAttribute => "naam";
///
/// Gets the identifier for assessment level elements.
///
public static string AssessmentLevelElement => "toetspeil";
///
/// Gets the identifier for hydraulic boundary location elements.
///
public static string HydraulicBoundaryLocationElement => "hrlocatie";
///
/// Gets the identifier for surface line elements.
///
public static string SurfaceLineElement => "profielschematisatie";
///
/// Gets the identifier for entry point elements.
///
public static string EntryPointElement => "intredepunt";
///
/// Gets the identifier for exit point elements.
///
public static string ExitPointElement => "uittredepunt";
///
/// Gets the identifier for stochastic soil model elements.
///
public static string StochasticSoilModelElement => "ondergrondmodel";
///
/// Gets the identifier for stochastic soil profile elements.
///
public static string StochasticSoilProfileElement => "ondergrondschematisatie";
///
/// Gets the identifier for stochasts elements.
///
public static string StochastsElement => "stochasten";
///
/// Gets the identifier for stochast elements.
///
public static string StochastElement => "stochast";
///
/// Gets the identifier for mean elements.
///
public static string MeanElement => "verwachtingswaarde";
///
/// Gets the identifier for standard deviation elements.
///
public static string StandardDeviationElement => "standaardafwijking";
///
/// Gets the identifier for the phreatic level exit stochast names.
///
public static string PhreaticLevelExitStochastName => "polderpeil";
///
/// Gets the identifier for the damping factor exit stochast names.
///
public static string DampingFactorExitStochastName => "dempingsfactor";
}
}