override fun isValid()

in dnq/src/main/kotlin/kotlinx/dnq/simple/PropertyConstraints.kt [287:296]


        override fun isValid(propertyValue: String?): Boolean {
            return if (propertyValue != null) {
                try {
                    URI(propertyValue)
                    true
                } catch (e: URISyntaxException) {
                    false
                }
            } else true
        }