Validates a parameter as a valid character. :param parameterValue: Value to be evaluated. :type Unknown :return Boolean: True indicates the parameter is a valid value. :type Boolean
(parameterValue)
| 273 | #Tested 5 |
| 274 | @staticmethod |
| 275 | def funcIsValidChar(parameterValue): |
| 276 | """ |
| 277 | Validates a parameter as a valid character. |
| 278 | |
| 279 | :param parameterValue: Value to be evaluated. |
| 280 | :type Unknown |
| 281 | :return Boolean: True indicates the parameter is a valid value. |
| 282 | :type Boolean |
| 283 | """ |
| 284 | |
| 285 | return ValidateData.funcIsValidString(parameterValue) |
| 286 | |
| 287 | #Tested 13 |
| 288 | @staticmethod |
nothing calls this directly
no test coverage detected