libStatGen Software 1
|
The SamValidationErrors class is a container class that holds SamValidationError Objects, allowing a validation method to return all of the invalid errors rather than just one. More...
#include <SamValidation.h>
Public Member Functions | |
SamValidationErrors () | |
Constructor. | |
~SamValidationErrors () | |
Destructor. | |
void | clear () |
Remove all the errors from the container. | |
void | addError (SamValidationError::Type newType, SamValidationError::Severity newSeverity, const char *newMessage) |
Add the specified error to this container. | |
unsigned int | numErrors () |
Return the number of validation errors contained in this object. | |
const SamValidationError * | getNextError () |
Return a pointer to the next error without removing it from the container, and returning null once all errors have been retrieved until resetErrorIter is called. | |
void | resetErrorIter () |
Reset the iterator to the begining of the errors. | |
void | getErrorString (std::string &errorString) const |
Append the error messages contained in this container to the passed in string. | |
The SamValidationErrors class is a container class that holds SamValidationError Objects, allowing a validation method to return all of the invalid errors rather than just one.
Definition at line 116 of file SamValidation.h.
SamValidationErrors::SamValidationErrors | ( | ) |
Constructor.
Definition at line 103 of file SamValidation.cpp.
SamValidationErrors::~SamValidationErrors | ( | ) |
Destructor.
Definition at line 111 of file SamValidation.cpp.
References clear().
void SamValidationErrors::addError | ( | SamValidationError::Type | newType, |
SamValidationError::Severity | newSeverity, | ||
const char * | newMessage | ||
) |
Add the specified error to this container.
Definition at line 132 of file SamValidation.cpp.
Referenced by SamValidator::isValid1BasedPos(), SamValidator::isValidCigar(), SamValidator::isValidQname(), SamValidator::isValidQuality(), SamValidator::isValidRefID(), SamValidator::isValidRname(), SamValidator::isValidRname(), and SamValidator::isValidTags().
void SamValidationErrors::clear | ( | ) |
Remove all the errors from the container.
Definition at line 117 of file SamValidation.cpp.
Referenced by ~SamValidationErrors().
void SamValidationErrors::getErrorString | ( | std::string & | errorString | ) | const |
Append the error messages contained in this container to the passed in string.
Definition at line 180 of file SamValidation.cpp.
Referenced by SamRecord::isValid().
const SamValidationError * SamValidationErrors::getNextError | ( | ) |
Return a pointer to the next error without removing it from the container, and returning null once all errors have been retrieved until resetErrorIter is called.
Definition at line 160 of file SamValidation.cpp.
unsigned int SamValidationErrors::numErrors | ( | ) |
Return the number of validation errors contained in this object.
Definition at line 151 of file SamValidation.cpp.
void SamValidationErrors::resetErrorIter | ( | ) |
Reset the iterator to the begining of the errors.
Definition at line 173 of file SamValidation.cpp.