SectionPairValueValidator.hpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-09
  6. * Changed: 2024-09-13
  7. *
  8. * */
  9. #ifndef LS_STD_SECTION_PAIR_VALUE_VALIDATOR_HPP
  10. #define LS_STD_SECTION_PAIR_VALUE_VALIDATOR_HPP
  11. #include <ls-std/core/Class.hpp>
  12. #include <ls-std/core/interface/IValidator.hpp>
  13. #include <ls-std/io/section-pair/SectionPairTypes.hpp>
  14. #include <ls-std/os/dynamic-goal.hpp>
  15. #include <string>
  16. /*
  17. * @doc: class(name: 'SectionPairValueValidator', package: 'io')
  18. * @doc: io.SectionPairValueValidator.description('This validator checks whether a content is a valid Section Pair value.')
  19. * */
  20. namespace ls::std::io
  21. {
  22. class LS_STD_DYNAMIC_GOAL SectionPairValueValidator : public ls::std::core::Class, public ls::std::core::interface_type::IValidator
  23. {
  24. public:
  25. explicit SectionPairValueValidator(ls::std::io::section_pair_row_value _value);
  26. ~SectionPairValueValidator() noexcept override;
  27. [[nodiscard]] static ::std::string getValidationRegex();
  28. [[nodiscard]] bool isValid() override;
  29. private:
  30. ls::std::io::section_pair_row_value value{};
  31. [[nodiscard]] static ::std::string _getValidationRegex();
  32. };
  33. }
  34. #endif