Done ticket GEPAFINBE-172

This commit is contained in:
nisha
2025-02-20 11:56:12 +05:30
parent 869c8f3f7d
commit cc19a1b763
6 changed files with 71 additions and 11 deletions

View File

@@ -785,5 +785,7 @@ public class Utils {
return input.matches("-?\\d+(\\.\\d+)?");
}
public static boolean isValidBoolean(String value) {
return "true".equalsIgnoreCase(value) || "false".equalsIgnoreCase(value);
}
}