Add Javadoc since for PatternMatchUtils.simpleMatchIgnoreCase() methods

See gh-34802

Signed-off-by: Johnny Lim <izeye@naver.com>
This commit is contained in:
Johnny Lim 2025-05-07 22:19:00 +09:00
parent 6c4651925e
commit 6858c0e8ce
1 changed files with 2 additions and 0 deletions

View File

@ -42,6 +42,7 @@ public abstract class PatternMatchUtils {
/** /**
* Variant of {@link #simpleMatch(String, String)} that ignores upper/lower case. * Variant of {@link #simpleMatch(String, String)} that ignores upper/lower case.
* @since 6.1.20
*/ */
public static boolean simpleMatchIgnoreCase(@Nullable String pattern, @Nullable String str) { public static boolean simpleMatchIgnoreCase(@Nullable String pattern, @Nullable String str) {
return simpleMatch(pattern, str, true); return simpleMatch(pattern, str, true);
@ -125,6 +126,7 @@ public abstract class PatternMatchUtils {
/** /**
* Variant of {@link #simpleMatch(String[], String)} that ignores upper/lower case. * Variant of {@link #simpleMatch(String[], String)} that ignores upper/lower case.
* @since 6.1.20
*/ */
public static boolean simpleMatchIgnoreCase(String @Nullable [] patterns, @Nullable String str) { public static boolean simpleMatchIgnoreCase(String @Nullable [] patterns, @Nullable String str) {
if (patterns != null) { if (patterns != null) {