fun annotatedSwitch(str: String) = when { @Suppress("DEPRECATION") str.isBlank() -> null str.isNotEmpty() != null -> null else -> 1 }