[#BloombergLP-bdlt-TimeUtil-isValidHHMMSS] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::xref:BloombergLP/bdlt/TimeUtil.adoc[TimeUtil]::isValidHHMMSS :relfileprefix: ../../../ :mrdocs: Return `true` if the specified `timeValue` is a non‐negative integer that represents a valid six‐digit time value suitable for passing to `convertFromHHMMSS`, and `false` otherwise. `timeValue` is a valid six‐digit time value if, when expressed in decimal notation, it contains exactly six digits (counting leading zeros, if any): two digits for the hour, two digits for the minute, and two digits for the second, where either `0 <= hour < 24`, `0 <= minute < 60`, and `0 <= second < 60`, or `240000 == timeValue`. == Synopsis Declared in `<bdlt_timeutil.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool isValidHHMMSS(int timeValue); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#